:root {
  --navy: #0c2a66;
  --navy-deep: #081b42;
  --blue: #2454c5;
  --gold: #f7c948;
  --gold-deep: #c38f08;
  --text: #182235;
  --muted: #5b667a;
  --line: #dbe3f0;
  --white: #ffffff;
  --bg: #f5f8ff;
  --card: #ffffff;
  --success: #1d8f5b;
  --danger: #b94a48;
  --shadow-sm: 0 8px 24px rgba(16, 30, 54, 0.08);
  --shadow-md: 0 20px 48px rgba(10, 29, 71, 0.14);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(36,84,197,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(247,201,72,.16), transparent 22%),
    linear-gradient(180deg, #fafdff 0%, var(--bg) 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; }

.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.small-container { width: min(860px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 92px 0; }
.alt-bg { background: rgba(255,255,255,0.72); backdrop-filter: blur(8px); }
.dark-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 27, 66, 0.9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.navbar.scrolled { box-shadow: 0 16px 36px rgba(8, 27, 66, .25); }
.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--white);
}
.logo span { color: var(--gold); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  font-weight: 600;
}
.nav-links a:hover { color: var(--gold); }
.nav-btn {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  min-width: 110px;
  text-align: center;
  font-weight: 600;
}
.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
}

.hero {
  background:
    linear-gradient(rgba(8, 27, 66, 0.76), rgba(8, 27, 66, 0.86)),
    url("images/hero-background.png") center/cover no-repeat;
  color: var(--white);
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .5;
}
.hero::before {
  width: 380px; height: 380px; right: -70px; top: 20px;
  background: rgba(247,201,72,.14);
}
.hero::after {
  width: 300px; height: 300px; left: -80px; bottom: -20px;
  background: rgba(255,255,255,.08);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .75rem;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.03;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.hero-lead {
  font-size: 1.05rem;
  max-width: 720px;
  color: rgba(255,255,255,.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(180deg, #ffdc6a 0%, var(--gold) 100%);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(247,201,72,.22);
}
.btn-outline {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 18px;
  backdrop-filter: blur(10px);
}
.stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
}
.stat-card span {
  display: block;
  font-size: .92rem;
  color: rgba(255,255,255,.8);
}
.stat-card.highlight { border-color: rgba(247,201,72,.55); }

.hero-panel { display: flex; justify-content: flex-end; }
.glass-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 22px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.hero-stack { display: grid; gap: 14px; }
.mini-role-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.mini-role-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  font-size: 1.5rem;
  background: rgba(255,255,255,.14);
}
.mini-role-card h3 { font-size: 1rem; margin-bottom: 2px; }
.mini-role-card p { font-size: .88rem; color: rgba(255,255,255,.75); }
.pill {
  white-space: nowrap;
  background: rgba(247,201,72,.16);
  color: var(--gold);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
}

.section-heading { margin-bottom: 38px; }
.section-heading.center { text-align: center; }
.section-heading.light h2, .section-heading.light p { color: var(--white); }
.section-kicker {
  color: var(--blue);
  font-size: .8rem;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 8px;
}
.dark-band .section-kicker, .join-section .section-kicker { color: #b8d0ff; }
.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-heading p { color: var(--muted); max-width: 760px; }
.section-heading.center p { margin-inline: auto; }
.dark-band .section-heading p { color: rgba(255,255,255,.8); }

.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.flow-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  min-height: 200px;
}
.flow-item h3 { margin: 14px 0 8px; }
.flow-item p { color: var(--muted); }
.flow-item.emphasis { border-color: rgba(36,84,197,.25); background: #eff4ff; }
.flow-item.success { border-color: rgba(29,143,91,.25); background: #eefaf4; }
.flow-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: #edf3ff; font-size: 1.4rem;
}
.flow-arrow { font-size: 1.8rem; color: var(--blue); font-weight: 800; }

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}
.split-bar-card, .dashboard-card, .role-card, .biz-card, .gallery-card, .compare-card, .join-form, .faq-item, .timeline-item, .info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.split-bar-card { padding: 24px; }
.split-bar {
  display: grid;
  grid-template-columns: 50fr 35fr 10fr 5fr;
  overflow: hidden;
  border-radius: 18px;
  min-height: 92px;
  margin-bottom: 18px;
}
.seg {
  display: grid; place-items: center;
  font-weight: 800; color: var(--white); font-size: 1.05rem;
}
.seg-50 { background: #1c5fd8; }
.seg-35 { background: #17a56f; }
.seg-10 { background: #f29c1f; }
.seg-5 { background: #71839d; }
.split-legend { display: grid; gap: 10px; color: var(--muted); }
.legend-dot {
  width: 12px; height: 12px; border-radius: 999px; display: inline-block; margin-right: 10px;
}
.legend-dot.internet { background: #1c5fd8; }
.legend-dot.fund { background: #17a56f; }
.legend-dot.referral { background: #f29c1f; }
.legend-dot.maintenance { background: #71839d; }
.split-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.info-card { padding: 20px; }
.info-card h3 { margin-bottom: 8px; }
.info-card p { color: var(--muted); }
.info-card.featured { background: linear-gradient(180deg, #f4fbf8 0%, #ffffff 100%); border-color: rgba(23,165,111,.25); }

.roles-grid, .dashboard-grid, .ecosystem-grid, .gallery-grid, .compare-grid {
  display: grid;
  gap: 20px;
}
.roles-grid { grid-template-columns: repeat(3, 1fr); }
.dashboard-grid { grid-template-columns: repeat(3, 1fr); }
.ecosystem-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.compare-grid { grid-template-columns: repeat(2, 1fr); }
.role-card { padding: 24px; }
.role-card.highlight {
  border-color: rgba(247,201,72,.5);
  background: linear-gradient(180deg, #fffdf6 0%, #ffffff 100%);
}
.role-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.role-index {
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; color: var(--blue);
}
.role-emoji {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.4rem;
  background: #eff4ff; border-radius: 16px;
}
.role-summary { color: var(--muted); margin: 10px 0 14px; }
.role-card ul { padding-left: 18px; color: var(--muted); display: grid; gap: 10px; }

.dashboard-card { padding: 22px; }
.dashboard-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px;
}
.status {
  background: #eef4ff; color: var(--blue); padding: 8px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700;
}
.metric-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.metric {
  padding: 16px; border-radius: 16px; background: #f7faff; border: 1px solid #e7eefc;
}
.metric strong { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.metric span { color: var(--muted); font-size: .9rem; }

.biz-card { overflow: hidden; color: var(--text); }
.biz-media { aspect-ratio: 16 / 10; }
.biz-media {
  background-size: cover;
  background-position: center;
}
.biz-internet {
  background-image: linear-gradient(rgba(8,27,66,.18), rgba(8,27,66,.35)), url("images/wifi-sharer-section.png");
}
.biz-water {
  background-image: linear-gradient(rgba(8,27,66,.05), rgba(8,27,66,.14)), url("images/water-station.png");
}
.biz-laundry {
  background-image: linear-gradient(rgba(8,27,66,.05), rgba(8,27,66,.12)), url("images/laundry.png");
}
.biz-ice {
  background-image: linear-gradient(rgba(8,27,66,.08), rgba(8,27,66,.18)), url("images/ice-plant.png");
}
.biz-carwash {
  background-image: linear-gradient(rgba(8,27,66,.08), rgba(8,27,66,.16)), url("images/carwash.png");
}
.biz-hydro {
  background-image: linear-gradient(rgba(8,27,66,.02), rgba(8,27,66,.10)), url("images/hydroponics.png");
}

.gradient-a { background: linear-gradient(135deg, #3a7afe 0%, #0c2a66 100%); }
.gradient-b { background: linear-gradient(135deg, #2ec7a6 0%, #0f7d73 100%); }
.gradient-c { background: linear-gradient(135deg, #8799f7 0%, #364fc7 100%); }
.gradient-d { background: linear-gradient(135deg, #7ecbff 0%, #2b6cb0 100%); }
.gradient-e { background: linear-gradient(135deg, #fed976 0%, #f59f00 100%); }
.gradient-f { background: linear-gradient(135deg, #8ce99a 0%, #2b8a3e 100%); }
.biz-card h3 { padding: 18px 18px 6px; }
.biz-card p { padding: 0 18px 20px; color: var(--muted); }

.gallery-card { overflow: hidden; }
.gallery-thumb { aspect-ratio: 16 / 11; }
.thumb-1 { background: linear-gradient(135deg, #0c2a66 0%, #2454c5 100%); }
.thumb-2 { background: linear-gradient(135deg, #f7c948 0%, #c38f08 100%); }
.thumb-3 { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%); }
.thumb-4 { background: linear-gradient(135deg, #7c3aed 0%, #4338ca 100%); }
.gallery-body { padding: 18px; }
.gallery-body h3 { margin-bottom: 6px; }
.gallery-body p { color: var(--muted); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-item { padding: 22px; position: relative; }
.timeline-item.featured { border-color: rgba(247,201,72,.45); background: #fffdf5; }
.timeline-phase {
  display: inline-block; margin-bottom: 10px; background: #eef4ff; color: var(--blue); padding: 8px 12px; border-radius: 999px; font-weight: 800; font-size: .8rem;
}
.timeline-item p { color: var(--muted); }

.compare-card { padding: 24px; }
.compare-card.bad { border-color: rgba(185,74,72,.22); background: #fff7f7; }
.compare-card.good { border-color: rgba(29,143,91,.22); background: #f5fcf8; }
.compare-card h3 { margin-bottom: 12px; }
.compare-card ul { padding-left: 18px; display: grid; gap: 10px; color: var(--muted); }

.difference-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.difference-card, .difference-highlight {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.difference-card {
  padding: 26px;
}
.difference-card.coop {
  background: #fff7f7;
  border-color: rgba(185,74,72,.18);
}
.difference-card.uhp {
  background: #f4fbf8;
  border-color: rgba(29,143,91,.18);
}
.difference-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.difference-card.coop .difference-badge {
  background: #ffe7e7;
  color: #b94a48;
}
.difference-card.uhp .difference-badge {
  background: #e3f7ec;
  color: #1d8f5b;
}
.difference-card h3 {
  margin-bottom: 12px;
}
.difference-card ul {
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.difference-highlight {
  margin-top: 20px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #0f2d6e 0%, #11377f 55%, #1b4ca9 100%);
  color: var(--white);
  border-color: rgba(255,255,255,.12);
}
.highlight-label {
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.difference-highlight h3 {
  color: var(--white);
}
.difference-highlight p {
  color: rgba(255,255,255,.85);
}

.faq-list { display: grid; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left; padding: 20px 22px; font-weight: 700; color: var(--text);
}
.faq-question span { color: var(--blue); font-size: 1.2rem; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-answer p { padding: 0 22px 20px; color: var(--muted); }
.faq-item.active .faq-answer { max-height: 320px; }
.faq-item.active .faq-question span { transform: rotate(45deg); }


.join-section {
  background: linear-gradient(180deg, #0e2d6f 0%, #0a224f 100%);
  color: var(--white);
}
.join-heading p { color: rgba(255,255,255,.82); }
.join-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.join-role-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.join-role-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.join-role-content {
  padding: 22px;
}
.join-role-content h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--white);
}
.join-role-content p {
  color: rgba(255,255,255,.82);
  min-height: 84px;
}
.join-role-btn {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.join-link-note {
  margin-top: 18px;
  text-align: center;
  color: rgba(255,255,255,.75);
}

.footer {
  background: #071630;
  color: rgba(255,255,255,.84);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 24px;
  padding: 46px 0 28px;
}
.footer-logo { display: inline-block; margin-bottom: 10px; }
.footer h3 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0 22px; }

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #0f172a;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .join-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .roles-grid,
  .dashboard-grid,
  .timeline,
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 820px) {
  .mobile-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    padding: 18px 16px 20px;
    background: rgba(8, 27, 66, .98);
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .hero-stats,
  .split-cards,
  .roles-grid,
  .dashboard-grid,
  .ecosystem-grid,
  .gallery-grid,
  .timeline,
  .compare-grid,
  .metric-grid,
  .join-card-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.5rem; }
}

@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .nav-container { min-height: 72px; }
  .hero { padding: 58px 0 60px; }
  .mini-role-card { grid-template-columns: 1fr; }
  .mini-role-icon { width: 48px; height: 48px; }
  .join-copy h2 { font-size: 2rem; }
}



/* Image-linked sections */
.dashboard-section {
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.92)),
    url("images/dashboard-background.png") center/cover no-repeat;
}

.ecosystem-section {
  background:
    linear-gradient(rgba(8, 27, 66, 0.86), rgba(8, 27, 66, 0.92)),
    url("images/ecosystem-background.png") center/cover no-repeat;
}

.role-card {
  overflow: hidden;
}

.role-media {
  height: 180px;
  margin: -28px -28px 18px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.role-media-wifi {
  background-image:
    linear-gradient(rgba(8, 27, 66, 0.22), rgba(8, 27, 66, 0.34)),
    url("images/wifi-sharer-section.png");
}

.role-media-affiliate {
  background-image:
    linear-gradient(rgba(8, 27, 66, 0.16), rgba(8, 27, 66, 0.28)),
    url("images/affiliate-section.png");
}

.role-media-subscriber {
  background-image:
    linear-gradient(rgba(8, 27, 66, 0.10), rgba(8, 27, 66, 0.18)),
    url("images/subscriber-section.png");
}

.gallery-thumb {
  min-height: 190px;
  background-size: cover;
  background-position: center;
}

.thumb-1 {
  background-image:
    linear-gradient(rgba(8, 27, 66, 0.18), rgba(8, 27, 66, 0.28)),
    url("images/hero-background.png");
}

.thumb-2 {
  background-image:
    linear-gradient(rgba(8, 27, 66, 0.14), rgba(8, 27, 66, 0.24)),
    url("images/wifi-sharer-section.png");
}

.thumb-3 {
  background-image:
    linear-gradient(rgba(8, 27, 66, 0.18), rgba(8, 27, 66, 0.34)),
    url("images/ecosystem-background.png");
}

.thumb-4 {
  background-image:
    linear-gradient(rgba(8, 27, 66, 0.18), rgba(8, 27, 66, 0.34)),
    url("images/dashboard-background.png");
}


@media (max-width: 768px) {
  .role-media {
    height: 150px;
    margin: -24px -24px 16px;
  }
  .gallery-thumb {
    min-height: 160px;
  }
}
