:root {
  --ink: #15212c;
  --muted: #607080;
  --navy: #17283a;
  --charcoal: #202a34;
  --orange: #f59a23;
  --green: #27765d;
  --blue: #31658f;
  --paper: #f4f6f3;
  --card: #ffffff;
  --line: #dbe2e7;
  --shadow: 0 18px 44px rgba(21, 33, 44, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }

.site-header,
.hero,
.section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 224px; max-width: 56vw; height: auto; display: block; }
.top-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.top-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  color: var(--charcoal);
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr);
  gap: 36px;
  align-items: center;
  padding: 54px 0 34px;
}
.home-hero { min-height: calc(100vh - 78px); padding-bottom: 58px; }
.hero-copy h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}
.eyebrow,
.category,
.mini-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: #354657;
  font-size: 1.16rem;
}
.disclosure {
  max-width: 760px;
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: #fff6e6;
  color: #48351e;
  font-size: .95rem;
  font-weight: 800;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}
.button.primary { background: var(--orange); color: #1e1609; box-shadow: 0 10px 22px rgba(245,154,35,.24); }
.button.secondary { background: var(--card); border-color: #b8c3cc; color: var(--navy); }
.card-button { width: 100%; background: var(--navy); color: #fff; margin-top: auto; }

.hero-panel {
  min-height: 470px;
  padding: 24px;
  border: 1px solid #c8d3dc;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245,154,35,.22), transparent 24%),
    linear-gradient(135deg, #ffffff, #eaf0f3);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dashboard-card,
.metric-row > div,
.route-card,
.gear-stack div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(21,33,44,.08);
}
.dashboard-card { padding: 20px; }
.dashboard-card strong { display: block; font-size: 1.45rem; }
.dashboard-card p { margin: 8px 0 0; color: var(--muted); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.metric-row div { padding: 16px 12px; }
.metric-row strong, .metric-row span { display: block; }
.metric-row span { color: var(--muted); font-size: .88rem; }
.route-card {
  height: 190px;
  margin-top: 14px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(49,101,143,.14) 1px, transparent 1px),
    linear-gradient(rgba(49,101,143,.14) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px;
}
.route-card span {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(21,33,44,.24);
}
.route-card span:nth-child(1) { left: 18%; top: 24%; }
.route-card span:nth-child(2) { left: 56%; top: 44%; background: var(--green); }
.route-card span:nth-child(3) { right: 14%; bottom: 18%; background: var(--blue); }
.gig-panel { display: grid; align-content: center; gap: 18px; }
.phone-visual {
  width: min(220px, 58%);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  border: 10px solid var(--navy);
  border-radius: 28px;
  background: linear-gradient(145deg, #fdfefe, #dfeaf0);
  position: relative;
}
.phone-visual span {
  position: absolute;
  left: 22%;
  right: 22%;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
}
.phone-visual span:nth-child(1) { top: 34%; }
.phone-visual span:nth-child(2) { top: 48%; background: var(--orange); }
.phone-visual span:nth-child(3) { top: 62%; background: var(--green); }
.gear-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gear-stack div { padding: 16px; font-weight: 900; text-align: center; color: var(--navy); }

.section { padding: 52px 0; }
.tight-top { padding-top: 28px; }
.section-heading { max-width: 760px; margin-bottom: 22px; }
.section-heading h2,
.feature-card h2,
.about-strip h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p,
.feature-card p,
.about-strip p,
.final-cta p { color: var(--muted); }

.feature-card,
.about-strip,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.feature-card p, .about-strip p { max-width: 770px; }

.use-grid,
.product-grid,
.setup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.use-grid { grid-template-columns: repeat(3, 1fr); }
.use-card,
.product-card,
.tier-card,
.setup-grid article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(21,33,44,.07);
}
.use-card { color: inherit; text-decoration: none; }
.use-card strong,
.product-card h3,
.tier-card h3,
.setup-grid h3 {
  margin: 8px 0 6px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}
.use-card p,
.product-card p,
.setup-grid p { margin: 8px 0; color: var(--muted); }
.product-card { min-height: 430px; }
.product-visual,
.use-card span {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #e7edf0;
  position: relative;
  flex: 0 0 auto;
}
.product-visual { width: 100%; height: 132px; margin-bottom: 14px; overflow: hidden; }
.product-visual::before,
.product-visual::after,
.use-card span::before,
.use-card span::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: var(--orange);
}
.icon-mount::before { width: 30%; height: 56%; left: 35%; top: 16%; background: var(--navy); }
.icon-mount::after { width: 54%; height: 10%; left: 23%; bottom: 18%; background: var(--orange); }
.icon-power::before { width: 28%; height: 52%; left: 28%; top: 24%; background: var(--navy); }
.icon-power::after { width: 20%; height: 30%; right: 26%; top: 34%; background: var(--orange); }
.icon-cable::before { width: 62%; height: 16%; left: 18%; top: 43%; background: var(--blue); }
.icon-cable::after { width: 12%; height: 34%; right: 18%; top: 34%; background: var(--orange); }
.icon-bag::before { width: 60%; height: 42%; left: 20%; bottom: 20%; background: var(--orange); }
.icon-bag::after { width: 32%; height: 24%; left: 34%; top: 24%; border: 6px solid var(--navy); background: transparent; }
.icon-drink::before { width: 28%; height: 48%; left: 22%; top: 28%; background: var(--orange); }
.icon-drink::after { width: 28%; height: 48%; right: 22%; top: 28%; background: var(--blue); }
.icon-crate::before { width: 66%; height: 48%; left: 17%; top: 30%; background: var(--navy); }
.icon-crate::after { width: 10%; height: 48%; left: 45%; top: 30%; background: var(--orange); }
.icon-light::before { width: 56%; height: 20%; left: 22%; top: 40%; background: var(--navy); }
.icon-light::after { width: 30%; height: 30%; right: 12%; top: 35%; background: var(--orange); clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%); }
.icon-cam::before { width: 58%; height: 40%; left: 21%; top: 30%; background: var(--navy); }
.icon-cam::after { width: 18%; height: 18%; left: 41%; top: 41%; border-radius: 50%; background: var(--orange); }
.icon-tech::before { width: 58%; height: 42%; left: 21%; top: 24%; background: var(--navy); }
.icon-tech::after { width: 34%; height: 8%; left: 33%; bottom: 20%; background: var(--orange); }
.icon-home::before { width: 58%; height: 42%; left: 21%; bottom: 18%; background: var(--navy); }
.icon-home::after { width: 46%; height: 46%; left: 27%; top: 18%; background: var(--orange); clip-path: polygon(50% 0, 100% 50%, 82% 50%, 82% 100%, 18% 100%, 18% 50%, 0 50%); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tier-card ul,
.avoid-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.tier-card li,
.avoid-list li { margin: 6px 0; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(21,33,44,.07);
}
table { width: 100%; border-collapse: collapse; min-width: 820px; }
th, td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  background: #eef3f5;
  color: var(--navy);
  font-size: .86rem;
  text-transform: uppercase;
}
tr:last-child td { border-bottom: 0; }

.avoid-panel,
.faq-section { padding-top: 36px; }
.avoid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 22px;
  padding: 20px 20px 20px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(21,33,44,.07);
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  margin-bottom: 10px;
  padding: 15px 16px;
}
summary { cursor: pointer; color: var(--navy); font-weight: 900; }
details p { color: var(--muted); margin-bottom: 0; }

.final-cta { margin-top: 24px; margin-bottom: 40px; background: var(--navy); color: #fff; }
.final-cta h2, .final-cta .eyebrow { color: #fff; }
.final-cta p { color: #dce6ee; }
.final-cta .disclosure { color: #46331a; background: #fff6e6; }
.site-footer {
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 920px) {
  .site-header { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .home-hero { min-height: auto; }
  .hero-panel { min-height: 360px; }
  .use-grid, .product-grid, .setup-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid, .avoid-list { grid-template-columns: 1fr; }
  .feature-card, .about-strip, .final-cta { align-items: stretch; flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer { width: min(100% - 22px, 1180px); }
  .brand img { width: 190px; max-width: 82vw; }
  .top-nav { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); }
  .top-nav a { justify-content: center; font-size: .86rem; }
  .hero-copy h1 { font-size: 2.25rem; }
  .lede { font-size: 1.04rem; }
  .metric-row, .gear-stack, .use-grid, .product-grid, .setup-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .button { width: 100%; }
}
