/* ===========================================================================
   FCC PS Docket 26-189 comment-record lead capture page.

   Ported from the design-tool export, which carried its own inline stylesheet
   plus the bundled Pilot Institute design system. The token values here are
   copied from that bundle; the Eina faces come from the site's /css/eina.css.
   Self-contained on purpose, like the Part 61 page: this layout is a one-off
   and has nothing in common with the expo pages.
   =========================================================================== */

:root {
  --midnight-navy: #0D0F20;
  --muted: rgba(13, 15, 32, 0.78);
  --faint: rgba(13, 15, 32, 0.55);
  --sky-blue: #2398FF;
  --cerulean: #33A7F2;
  --magenta-pink: #F80590;
  --fuchsia: #E42A84;
  --aqua-blue: #0EBFE5;
  --steel-blue: #1D3B61;
  --ash-gray: #82898D;
  --cool-gray: #B9CDCB;
  --light-gray: #F0F0F0;
  --slate: #5A6472;
  --font: 'Eina', Arial, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: #FFFFFF; }
body { font-family: var(--font); color: var(--midnight-navy); }
img { max-width: 100%; display: block; }
a { color: var(--sky-blue); }
a:hover { color: var(--cerulean); }
h1, h2, h3 { margin: 0; font-weight: 700; }
p { margin: 0; }

.lp-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* --- shared section furniture ------------------------------------------- */
.lp-sec { padding: 88px 0; }
.lp-sec-line { border-top: 1px solid var(--cool-gray); }
.lp-sec-gray { background: var(--light-gray); }
.lp-rule { width: 40px; height: 4px; background: var(--magenta-pink); }
.lp-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-blue);
  margin: 16px 0 0;
}
.lp-h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.25;
  margin: 12px 0 0;
  max-width: 640px;
  text-wrap: pretty;
}
.lp-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin-top: 14px;
  text-wrap: pretty;
}
.lp-body:first-of-type { margin-top: 20px; }

.lp-cta {
  display: inline-block;
  background: var(--magenta-pink);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 6px;
  border: 0;
  font-family: var(--font);
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.lp-cta:hover { background-color: var(--fuchsia); color: #FFFFFF; transform: translateY(-1px); }
.lp-cta-lg { font-size: 15px; padding: 15px 36px; }

/* --- header --------------------------------------------------------------*/
.lp-header {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-header img { height: 28px; width: auto; }
.lp-header span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
}

/* --- hero ----------------------------------------------------------------*/
.lp-hero {
  max-width: 1320px;
  padding-top: 40px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: 'head visual' 'stats visual';
  gap: 36px 56px;
  align-items: start;
}
.lp-head { grid-area: head; }
.lp-kicker {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-blue);
}
.lp-head h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 16px 0 0;
  text-wrap: pretty;
}
.lp-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 20px;
  max-width: 520px;
  text-wrap: pretty;
}

.lp-statswrap {
  grid-area: stats;
  border-top: 1px solid var(--cool-gray);
  padding-top: 24px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.lp-stat-num { font-size: 32px; font-weight: 700; }
.lp-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 2px;
}

.lp-visual {
  grid-area: visual;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

/* The "cover" is drawn, not an image: a navy slab with a plotted-grid wash,
   the report title, and a bar-chart motif along the bottom. */
.lp-cover {
  width: 300px;
  height: 388px;
  flex: none;
  position: relative;
  transform: rotate(3deg);
  margin-top: 8px;
  background-color: var(--midnight-navy);
  background-image:
    linear-gradient(rgba(35,152,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,152,255,0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 3px 10px 10px 3px;
  box-shadow: 0 24px 48px rgba(13,15,32,0.35);
  padding: 28px 28px 28px 34px;
  display: flex;
  flex-direction: column;
}
/* Spine shading down the bound edge. */
.lp-cover::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.12) 55%,
    rgba(255,255,255,0.10) 78%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
/* The logo sits in a flex column, where the default `stretch` would widen it
   to the whole cover while its height stays fixed. */
.lp-cover .lp-cover-logo { align-self: flex-start; height: 20px; width: auto; }
.lp-cover-title { margin-top: 40px; }
.lp-cover-tick { width: 36px; height: 4px; background: var(--magenta-pink); }
.lp-cover-title strong {
  display: block;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-top: 16px;
}
.lp-cover-title span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--sky-blue);
  margin-top: 10px;
}
.lp-cover-bars {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 74px;
}
.lp-cover-bars i { width: 26px; background: var(--sky-blue); display: block; }
.lp-cover-bars i:nth-child(1) { height: 36%; }
.lp-cover-bars i:nth-child(2) { height: 64%; }
.lp-cover-bars i:nth-child(3) { height: 100%; }
.lp-cover-bars i:nth-child(4) { height: 52%; }
.lp-cover-bars i:nth-child(5) { height: 22%; background: var(--aqua-blue); }

/* --- form card -----------------------------------------------------------*/
.lp-formcard {
  position: relative;
  z-index: 2;
  width: 360px;
  flex: none;
  background: #FFFFFF;
  border: 1px solid var(--cool-gray);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(13,15,32,0.12);
  padding: 30px;
  scroll-margin-top: 24px;
}
.lp-formcard h2 { font-size: 24px; margin: 0 0 6px; }
.lp-formcard .lp-formnote {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px;
}
.lp-formcard form { display: flex; flex-direction: column; gap: 14px; }
.lp-formcard input[type="text"],
.lp-formcard input[type="email"] {
  height: 48px;
  width: 100%;
  border: 1px solid var(--cool-gray);
  border-radius: 6px;
  padding: 0 14px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--midnight-navy);
  background: #FFFFFF;
}
.lp-formcard input:focus {
  outline: 2px solid var(--magenta-pink);
  outline-offset: -1px;
  border-color: var(--magenta-pink);
}
.lp-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
}
.lp-agree input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--magenta-pink); flex: none; }
.lp-agree a { color: var(--midnight-navy); text-decoration: underline; }
.lp-formcard .lp-cta { display: block; width: 100%; text-align: center; padding: 15px 0; }
.lp-ssl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.err {
  background: #FDE6F2;
  border: 1px solid #F5ACA5;
  color: #B9006E;
  padding: .6rem .8rem;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* --- credibility strip ---------------------------------------------------*/
.lp-strip {
  border-top: 1px solid var(--cool-gray);
  background: var(--light-gray);
}
.lp-strip .lp-wrap {
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.lp-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.lp-strip svg { color: var(--ash-gray); flex: none; }

/* --- headline findings ---------------------------------------------------*/
.lp-pains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.lp-pain {
  border: 1px solid var(--cool-gray);
  border-left: 3px solid var(--sky-blue);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
}
.lp-pain strong { display: block; font-size: 30px; font-weight: 700; line-height: 1; }
.lp-pain span {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 8px;
}

/* --- what you get --------------------------------------------------------*/
.lp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.lp-card {
  background: #FFFFFF;
  border: 1px solid var(--cool-gray);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-card:hover { border-color: var(--sky-blue); box-shadow: 0 6px 18px rgba(13,15,32,0.08); }
.lp-card-num { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--sky-blue); }
.lp-card h3 { font-weight: 600; font-size: 17px; margin: 10px 0 6px; }
.lp-card p { font-size: 15px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

/* --- a look inside -------------------------------------------------------*/
.lp-window {
  border: 1px solid var(--cool-gray);
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(13,15,32,0.08);
  margin-top: 36px;
}
.lp-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--cool-gray);
  background: var(--light-gray);
}
.lp-window-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--cool-gray); display: block; }
.lp-window-bar span {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--faint);
}
.lp-window-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background-color: var(--midnight-navy);
  background-image:
    linear-gradient(rgba(35,152,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,152,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.lp-bar { display: flex; height: 44px; border-radius: 4px; overflow: hidden; }
.lp-bar div {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  border-right: 2px solid var(--midnight-navy);
}
.lp-bar .lp-bar-1 { width: 77.4%; background: var(--sky-blue); padding-left: 12px; }
.lp-bar .lp-bar-2 { width: 21.2%; background: var(--aqua-blue); color: #0D0F20; padding-left: 10px; }
.lp-bar .lp-bar-3 { width: 0.4%; background: var(--magenta-pink); }
.lp-bar .lp-bar-4 { width: 1.0%; background: var(--slate); border-right: 0; }
.lp-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 13px;
  color: var(--cool-gray);
}
.lp-legend span { display: flex; align-items: center; gap: 8px; }
.lp-legend i { width: 10px; height: 10px; border-radius: 2px; display: block; flex: none; }
.lp-quote { border-left: 2px solid var(--steel-blue); padding-left: 16px; }
.lp-quote p { font-size: 15.5px; line-height: 1.55; color: #FFFFFF; text-wrap: pretty; }
.lp-quote cite { display: block; font-size: 12px; color: var(--ash-gray); margin-top: 8px; font-style: normal; }

/* --- FAQ -----------------------------------------------------------------*/
.lp-faq h2 { margin-top: 16px; margin-bottom: 24px; }
.lp-faq details { max-width: 820px; border-bottom: 1px solid var(--cool-gray); padding: 16px 0; }
.lp-faq details:last-of-type { border-bottom: none; }
.lp-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  text-wrap: pretty;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--ash-gray); flex: none; line-height: 1.1; }
.lp-faq details[open] summary::after { content: '\2212'; }
.lp-faq details p { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin-top: 12px; text-wrap: pretty; }

/* --- closing CTA ---------------------------------------------------------*/
.lp-close { padding: 72px 0; text-align: center; }
.lp-close h2 { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.25; margin: 0 0 10px; text-wrap: pretty; }
.lp-close p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 480px;
}

/* --- footer --------------------------------------------------------------*/
.lp-footer { border-top: 1px solid var(--cool-gray); }
.lp-footer .lp-wrap { padding-top: 40px; padding-bottom: 48px; display: flex; flex-direction: column; gap: 18px; }
.lp-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.lp-footer-top img { height: 24px; width: auto; }
.lp-footer-links { display: flex; gap: 20px; font-size: 13px; flex-wrap: wrap; }
.lp-footer-links a { color: var(--muted); text-decoration: none; }
.lp-footer-links a:hover { text-decoration: underline; }
.lp-fine { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

/* --- responsive ----------------------------------------------------------*/
@media (max-width: 1240px) {
  .lp-hero { grid-template-columns: 1fr; grid-template-areas: 'head' 'visual' 'stats'; gap: 32px; }
  .lp-visual { flex-direction: column; align-items: center; }
  .lp-cover { transform: rotate(-2deg); margin: 36px auto 8px; order: 2; }
  .lp-formcard { margin: 0 auto; max-width: 440px; width: 100%; }
}
/* The cover (300px) and the form (360px) plus the 28px gap need 688px of
   content width before they can sit side by side, so the side-by-side rule
   starts at 780px rather than the export's 641px, which overflowed on small
   tablets. */
@media (min-width: 780px) and (max-width: 1240px) {
  .lp-visual { flex-direction: row; justify-content: center; align-items: flex-start; }
  .lp-cover { transform: rotate(3deg); margin: 8px 0 0; order: 0; }
  .lp-formcard { margin: 0; width: 360px; }
  .lp-statswrap { justify-content: center; text-align: center; }
}
@media (max-width: 860px) {
  .lp-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lp-wrap { padding-left: 20px; padding-right: 20px; }
  .lp-sec { padding: 56px 0; }
  .lp-statswrap { display: grid; grid-template-columns: repeat(2, auto); gap: 22px 40px; justify-content: center; }
  .lp-cover { width: 100%; max-width: 300px; }
  .lp-window-body { padding: 18px; }
  .lp-bar { height: 38px; }
}
