:root{
  --bg:#fcf7f2;
  --panel:#fffdfb;
  --card:#ffffff;
  --line:#f1c39f;
  --line-strong:#eda35d;
  --viwi:#ff9d2e;
  --viwi-2:#ffb347;
  --text:#171717;
  --muted:#5f7092;
  --dark:#07090c;
  --shadow:0 14px 34px rgba(28,19,9,.08);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-pill:999px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Quicksand",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{
  width:min(calc(100% - 32px),var(--container));
  margin-inline:auto;
}

.preview-shell{
  min-height:100vh;
  overflow-x:hidden;
}

/* TOP HEADER */
.topbar{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,252,249,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(237,163,93,.22);
}
.topbar-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}
.top-brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.top-brand img{
  width:170px;
  height:auto;
  object-fit:contain;
}
.top-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}
.nav-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  min-height:48px;
  border-radius:var(--radius-pill);
  border:1px solid var(--line);
  background:#fff;
  color:#2a2a2a;
  font-weight:700;
  font-size:14px;
  line-height:1;
  transition:all .18s ease;
  box-shadow:0 8px 20px rgba(31,20,7,.04);
}
.nav-pill:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(31,20,7,.08);
}
.nav-pill.primary{
  color:#fff;
  border-color:#ffac4f;
  background:linear-gradient(135deg,var(--viwi),var(--viwi-2));
}
.nav-pill.soft{
  background:#fffaf5;
}

/* SECTIONS */
.section{
  padding:34px 0;
}
.section-soft{
  background:linear-gradient(180deg,#f8ecdf 0%,#fcf7f2 100%);
}
.section-title{
  margin:0 0 10px;
  text-align:center;
  font-size:clamp(28px,3vw,54px);
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:800;
}
.section-subtitle{
  margin:0 auto 26px;
  max-width:900px;
  text-align:center;
  color:var(--muted);
  font-size:clamp(17px,1.8vw,21px);
  line-height:1.55;
  font-weight:600;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid var(--line);
  background:#fff9f4;
  color:#f28c22;
  border-radius:999px;
  padding:10px 18px;
  font-weight:800;
  font-size:15px;
  line-height:1;
  margin:0 auto 18px;
  box-shadow:0 8px 20px rgba(255,157,46,.08);
}

/* HERO */
.hero{
  padding:42px 0 36px;
  background:linear-gradient(180deg,#f4d4b1 0%,#f7dec1 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:26px;
  align-items:center;
}
.hero-copy{
  max-width:590px;
}
.hero-copy .eyebrow{
  margin-left:0;
}
.hero-title{
  margin:0;
  font-size:clamp(34px,4vw,72px);
  line-height:1.06;
  letter-spacing:-.045em;
  font-weight:800;
}
.hero-title-row{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.hero-title-row .text{
  font-size:clamp(32px,3.4vw,56px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.04em;
}
.hero-inline-logo{
  width:92px;
  height:auto;
  object-fit:contain;
}
.hero-desc{
  margin:24px 0 26px;
  color:var(--muted);
  font-size:clamp(18px,1.75vw,20px);
  line-height:1.6;
  font-weight:600;
}
.hero-actions{
  background:#fff7ef;
  border:1px solid rgba(237,163,93,.42);
  border-radius:26px;
  padding:14px;
  box-shadow:var(--shadow);
  width:min(100%,560px);
}
.hero-actions-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  margin-bottom:12px;
}
.input-like{
  min-height:56px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#7b5f4e;
  font-size:16px;
  font-weight:700;
}
.hero-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.mini-btn, .cta-btn, .tag-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  border:1px solid var(--line);
  font-family:inherit;
  cursor:pointer;
  text-align:center;
  transition:all .18s ease;
}
.mini-btn{
  min-height:56px;
  padding:0 14px;
  background:linear-gradient(180deg,#ffffff,#fff9f3);
  color:#242424;
  font-size:14px;
  font-weight:800;
  box-shadow:0 8px 18px rgba(31,20,7,.05);
}
.mini-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 22px rgba(31,20,7,.08);
}
.cta-btn{
  min-height:56px;
  padding:0 24px;
  background:linear-gradient(135deg,var(--viwi),var(--viwi-2));
  border-color:#ffb867;
  color:#fff;
  font-size:16px;
  font-weight:800;
  box-shadow:0 12px 24px rgba(255,157,46,.22);
}
.cta-btn:hover{
  transform:translateY(-1px) scale(1.01);
  box-shadow:0 16px 28px rgba(255,157,46,.3);
}
.hero-media{
  position:relative;
}
.hero-banner{
  width:100%;
  border-radius:32px;
  border:1px solid rgba(237,163,93,.35);
  box-shadow:0 20px 40px rgba(46,27,6,.12);
  overflow:hidden;
  background:#fff3e6;
}
.hero-banner img{
  width:100%;
  height:auto;
  display:block;
}

/* GENERIC GRID CARDS */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.card{
  background:var(--card);
  border:1px solid rgba(237,163,93,.58);
  border-radius:30px;
  padding:24px 18px 20px;
  box-shadow:0 8px 20px rgba(29,21,11,.03);
}
.center-card{
  text-align:center;
}
.card-icon-wrap{
  width:76px;
  height:76px;
  margin:0 auto 18px;
  border-radius:24px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#fff7f0,#fff2e4);
  border:1px solid rgba(237,163,93,.42);
  box-shadow:0 10px 20px rgba(255,157,46,.08);
}
.card-icon-wrap img{
  width:50px;
  height:50px;
  object-fit:contain;
}
.card h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.18;
  font-weight:800;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
  font-weight:600;
}
.tag-btn{
  min-height:34px;
  margin-top:16px;
  padding:0 14px;
  background:#fff8f2;
  color:#ea861c;
  font-size:13px;
  font-weight:800;
}

/* JOIN */
.join-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.join-card{
  display:flex;
  flex-direction:column;
  height:100%;
}
.join-card .card-copy{
  flex:1;
}
.join-cta{
  width:100%;
  min-height:50px;
  margin-top:18px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid #ffb867;
  background:linear-gradient(135deg,var(--viwi),var(--viwi-2));
  color:#fff;
  font-size:15px;
  font-weight:800;
  box-shadow:0 12px 24px rgba(255,157,46,.22);
}
.join-cta:hover{
  transform:translateY(-1px) scale(1.01);
}

/* ECOSYSTEM */
.ecosystem-box{
  background:#fff;
  border:1px solid rgba(237,163,93,.5);
  border-radius:34px;
  padding:36px;
  box-shadow:0 10px 22px rgba(29,21,11,.04);
}
.ecosystem-note{
  margin-top:24px;
  display:grid;
  grid-template-columns:72px 1fr;
  gap:18px;
  align-items:flex-start;
  padding:22px;
  border:1px solid rgba(237,163,93,.5);
  border-radius:24px;
  background:#fffaf5;
}
.ecosystem-note img{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:18px;
  border:1px solid rgba(237,163,93,.45);
  background:#fff;
  padding:10px;
}
.ecosystem-note h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:800;
}
.ecosystem-note p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  font-weight:600;
}

/* INSTALL */
.install-box{
  background:#fff;
  border:1px solid rgba(237,163,93,.56);
  border-radius:34px;
  padding:32px 34px;
  box-shadow:0 10px 22px rgba(29,21,11,.04);
}
.install-grid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:24px;
  align-items:center;
}
.install-brand{
  width:210px;
  height:auto;
  object-fit:contain;
  margin-bottom:18px;
}
.install-title{
  margin:0 0 14px;
  font-size:clamp(30px,3vw,52px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.04em;
}
.install-desc{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  font-weight:600;
}
.install-badges{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}
.install-badges img{
  width:250px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(255,157,46,.12));
  animation:viwi-badge-float 3.6s ease-in-out infinite;
}
.install-badges img:nth-child(2){
  animation-delay:.4s;
}
@keyframes viwi-badge-float{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-4px) scale(1.015)}
}

/* COVERAGE */
.coverage-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:18px;
}
.city-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.city-card{
  background:#fff;
  border:1px solid rgba(237,163,93,.56);
  border-radius:26px;
  padding:22px;
}
.city-card .state{
  color:#f28b21;
  font-size:14px;
  font-weight:800;
  margin-bottom:10px;
}
.city-card h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.2;
  font-weight:800;
}
.city-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
  font-weight:600;
}

/* FOOTER */
.footer{
  margin-top:36px;
  background:#07090c;
  color:#fff;
}
.footer-inner{
  padding:38px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.25fr repeat(4,.85fr);
  gap:24px;
  align-items:flex-start;
}
.footer-brand img{
  width:230px;
  height:auto;
  object-fit:contain;
  margin-bottom:18px;
}
.footer-brand p{
  margin:0;
  max-width:330px;
  font-size:15px;
  line-height:1.55;
  color:#f2f2f2;
  font-weight:600;
}
.footer-col h4{
  margin:0 0 16px;
  color:var(--viwi);
  font-size:18px;
  line-height:1.2;
  font-weight:800;
}
.footer-col a{
  display:block;
  margin:0 0 10px;
  color:#fff;
  font-size:15px;
  line-height:1.45;
  font-weight:700;
}
.footer-divider{
  margin:26px 0 18px;
  border-top:1px solid rgba(255,255,255,.11);
}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-bottom p{
  margin:0;
  color:#cfcfcf;
  font-size:14px;
  line-height:1.5;
  font-weight:600;
}
.footer-links-inline{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer-links-inline a{
  color:#fff;
  opacity:.96;
  font-size:14px;
  font-weight:700;
}

/* RESPONSIVE */
@media (max-width:1180px){
  .cards-grid{grid-template-columns:repeat(4,1fr)}
  .join-grid{grid-template-columns:repeat(2,1fr)}
  .coverage-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:980px){
  .topbar-inner{flex-direction:column; align-items:stretch}
  .top-brand{justify-content:center}
  .top-nav{justify-content:center}
  .hero-grid,
  .install-grid,
  .ecosystem-note{grid-template-columns:1fr}
  .hero-copy{max-width:none}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .city-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .section{padding:28px 0}
  .top-brand img{width:150px}
  .nav-pill{
    min-height:44px;
    padding:10px 14px;
    font-size:13px;
  }
  .hero-title{font-size:clamp(30px,7vw,46px)}
  .hero-title-row .text{font-size:clamp(28px,6vw,38px)}
  .hero-inline-logo{width:76px}
  .hero-actions-row{grid-template-columns:1fr}
  .hero-mini-grid{grid-template-columns:repeat(3,1fr)}
  .mini-btn{
    min-height:52px;
    padding:0 10px;
    font-size:13px;
  }
  .cards-grid,
  .join-grid,
  .coverage-grid,
  .footer-grid{grid-template-columns:1fr}
  .install-badges{
    flex-direction:column;
    align-items:flex-start;
  }
  .install-badges img{width:220px}
  .install-box,.ecosystem-box{padding:24px}
}
@media (max-width:520px){
  .container{width:min(calc(100% - 20px),var(--container))}
  .hero-title{font-size:clamp(28px,10vw,42px)}
  .hero-title-row .text{font-size:clamp(26px,8vw,34px)}
  .hero-desc{font-size:17px}
  .mini-btn{
    font-size:12px;
    padding:0 8px;
  }
  .hero-mini-grid{
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }
  .input-like{font-size:15px}
  .install-title{font-size:36px}
  .install-brand{width:180px}
}
