/* =========================================================
   Coast 2 Coast Equity — "Signal" futuristic system
   Deep space navy, glass panels, electric cyan.
   Contrast held at AA+ so the copy stays readable.
   ========================================================= */

:root {
  --bg:        #070d1a;
  --bg-2:      #0b1426;
  --panel:     #101c33;
  --panel-2:   #16253f;
  --line:      #1f3352;
  --line-soft: #18294478;

  --cyan:      #22d3ee;
  --cyan-d:    #06b6d4;
  --cyan-dim:  #0e7490;
  --violet:    #7c5cff;
  --mint:      #34e6b0;
  --amber:     #fbbf24;

  --txt:       #eaf2ff;
  --txt-2:     #a9bdd9;
  --txt-3:     #6f87a8;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --glow:    0 0 0 1px rgba(34,211,238,.18), 0 8px 40px rgba(34,211,238,.12);
  --glow-lg: 0 0 0 1px rgba(34,211,238,.25), 0 20px 70px rgba(34,211,238,.18);
  --lift:    0 20px 60px rgba(0,0,0,.55);

  --shell: 1200px;
  --gut: 22px;

  --display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient field */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(34,211,238,.14), transparent 60%),
    radial-gradient(800px 500px at 92% 8%, rgba(124,92,255,.13), transparent 62%),
    radial-gradient(700px 500px at 50% 100%, rgba(52,230,176,.07), transparent 60%);
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-underline-offset: 3px; }
a:hover { color: #67e8f9; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gut); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 .5em;
  color: #fff;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 5.1vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.08rem, 1.8vw, 1.26rem); letter-spacing: -.018em; }

p { margin: 0 0 1.1em; color: var(--txt-2); }
p.lede { font-size: 1.15rem; color: #c3d6ef; max-width: 60ch; }

.eyebrow {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 .95rem;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; flex: none;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem;
  letter-spacing: -.01em;
  padding: .95rem 1.8rem;
  border: 0; border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-d) 55%, #0891b2 100%);
  color: #041420;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(34,211,238,.4), 0 8px 30px rgba(34,211,238,.32);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn:hover {
  color: #041420; filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(34,211,238,.55), 0 14px 44px rgba(34,211,238,.45);
}
.btn:active { transform: translateY(0); }
.btn--wide { width: 100%; font-size: 1.08rem; padding: 1.05rem 1.5rem; }
.btn--ghost {
  background: rgba(255,255,255,.04); color: var(--txt);
  box-shadow: inset 0 0 0 1px var(--line);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(34,211,238,.09); color: #fff; filter: none;
  box-shadow: inset 0 0 0 1px rgba(34,211,238,.5);
}

/* ---------------- header ---------------- */
.topbar {
  background: rgba(7,13,26,.7);
  border-bottom: 1px solid var(--line-soft);
  color: var(--txt-3);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .06em;
}
.topbar .shell {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .55rem; padding-bottom: .55rem;
}
.topbar span { display: flex; align-items: center; gap: .45rem; }
.topbar svg { width: 14px; height: 14px; color: var(--cyan); flex: none; }
.topbar .hide-sm { display: none; }
@media (min-width: 780px) { .topbar .hide-sm { display: flex; } }

.masthead {
  position: sticky; top: 0; z-index: 40;
  background: rgba(9,16,32,.82);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.masthead .shell {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 74px;
}
.wordmark { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.monogram {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--cyan), #2563eb 70%, var(--violet));
  color: #04121c;
  font-family: var(--display); font-weight: 700; font-size: .84rem; letter-spacing: -.03em;
  box-shadow: 0 0 24px rgba(34,211,238,.4);
}
.wordmark b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.12rem; letter-spacing: -.03em; color: #fff; line-height: 1.15;
}
.wordmark i {
  display: block; font-style: normal;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--txt-3);
}
.mast-right { display: flex; align-items: center; gap: 1.1rem; }
.mast-phone { text-decoration: none; text-align: right; display: none; }
@media (min-width: 700px) { .mast-phone { display: block; } }
.mast-phone small {
  display: block; font-family: var(--mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--txt-3);
}
.mast-phone strong {
  font-family: var(--display); font-weight: 700; font-size: 1.26rem;
  color: #fff; letter-spacing: -.025em;
}
.mast-phone:hover strong { color: var(--cyan); }
.mast-cta { display: none; }
@media (min-width: 940px) { .mast-cta { display: inline-flex; } }

/* nav */
.nav { border-bottom: 1px solid var(--line-soft); background: rgba(7,13,26,.55); }
.nav .shell { display: flex; gap: 1.9rem; overflow-x: auto; scrollbar-width: none; }
.nav .shell::-webkit-scrollbar { display: none; }
.nav a {
  font-family: var(--display); font-weight: 500; font-size: .92rem;
  color: var(--txt-2); text-decoration: none; white-space: nowrap;
  padding: .85rem 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--cyan); transform: scaleX(0);
  transform-origin: left; transition: transform .2s ease;
  box-shadow: 0 0 12px var(--cyan);
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

/* ---------------- hero ---------------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center;
  opacity: .16; filter: saturate(.5) contrast(1.1);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(7,13,26,.55), rgba(7,13,26,.92)),
    repeating-linear-gradient(90deg, rgba(34,211,238,.05) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(34,211,238,.05) 0 1px, transparent 1px 84px);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 100%);
}
.hero > .shell { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: clamp(2rem, 4.6vw, 3.8rem) 0 clamp(2.6rem, 5vw, 4.4rem);
  align-items: start;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.02fr .98fr;
    grid-template-areas: "copy form" "aside form";
    gap: 1.1rem 3.4rem;
  }
  .hero-copy { grid-area: copy; }
  .hero-form { grid-area: form; }
  .hero-aside { grid-area: aside; }
}
.hero h1 em {
  font-style: normal; display: block;
  background: linear-gradient(100deg, var(--cyan) 0%, var(--mint) 45%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-points { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .65rem; }
.hero-points li {
  display: grid; grid-template-columns: 24px 1fr; gap: .75rem;
  align-items: start; color: var(--txt-2); font-size: 1.01rem;
}
.hero-points svg { width: 21px; height: 21px; margin-top: .32rem; color: var(--cyan); }

/* ---------------- glass form panel ---------------- */
.record {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(22,37,63,.9), rgba(11,20,38,.94));
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  box-shadow: var(--glow-lg), var(--lift);
  overflow: hidden;
}
.record::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-lg);
  padding: 1px; pointer-events: none;
  background: linear-gradient(160deg, rgba(34,211,238,.55), rgba(124,92,255,.25) 45%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.record-head {
  padding: 1.2rem 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(34,211,238,.09), transparent);
}
.record-head strong {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.32rem; color: #fff; letter-spacing: -.025em;
}
.record-head span { font-size: .9rem; color: var(--txt-2); }
.record-body { padding: 1.4rem 1.5rem 1.6rem; }

.field { margin-bottom: .85rem; }
.field label {
  display: block; font-family: var(--mono); font-size: .66rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--txt-3); margin-bottom: .38rem;
}
.field input, .field select {
  width: 100%; font-family: var(--body); font-size: 1.02rem;
  padding: .85rem .95rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(7,13,26,.65);
  color: var(--txt);
  transition: border-color .14s ease, box-shadow .14s ease, background .14s ease;
}
.field input::placeholder { color: #4d6485; }
.field select option { background: var(--panel); color: var(--txt); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--cyan);
  background: rgba(7,13,26,.95);
  box-shadow: 0 0 0 3px rgba(34,211,238,.16), 0 0 22px rgba(34,211,238,.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
@media (max-width: 440px) { .field-row { grid-template-columns: 1fr; } }

.record-foot {
  margin: .95rem 0 0; text-align: center;
  font-size: .82rem; color: var(--txt-3); line-height: 1.55;
}
.record-foot svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: .3rem; color: var(--mint); }
.form-status {
  margin-top: .9rem; padding: .85rem 1rem; border-radius: var(--r-sm);
  background: rgba(52,230,176,.1);
  box-shadow: inset 0 0 0 1px rgba(52,230,176,.35);
  color: var(--mint); font-weight: 500; font-size: .95rem; display: none;
}
.form-status.show { display: block; }

/* ---------------- trust bar ---------------- */
.trustbar {
  background: rgba(11,20,38,.6);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trustbar .shell {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 1.6rem; padding-top: 1.5rem; padding-bottom: 1.5rem;
}
@media (min-width: 860px) { .trustbar .shell { grid-template-columns: repeat(4, 1fr); } }
.trustbar div { display: grid; grid-template-columns: 34px 1fr; gap: .75rem; align-items: center; }
.trustbar svg { width: 30px; height: 30px; color: var(--cyan); }
.trustbar b {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: .97rem; color: #fff; line-height: 1.3; letter-spacing: -.01em;
}
.trustbar small { color: var(--txt-3); font-size: .84rem; }

/* ---------------- sections ---------------- */
section { padding: clamp(2.8rem, 5.4vw, 4.8rem) 0; }
.sec-sand, .sec-navy { background: rgba(11,20,38,.55); border-block: 1px solid var(--line-soft); }
.sec-head { max-width: 720px; margin-bottom: 2.3rem; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head p { margin-bottom: 0; }

.grid-2 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 2.6rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  background: linear-gradient(165deg, rgba(22,37,63,.55), rgba(11,20,38,.75));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem 1.5rem;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card h3 { margin-bottom: .45rem; }
.card p { margin: 0; color: var(--txt-2); font-size: .97rem; }
a.card { display: block; text-decoration: none; }
a.card:hover {
  border-color: rgba(34,211,238,.5);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}
a.card h3 { color: #fff; }
a.card:hover h3 { color: var(--cyan); }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(34,211,238,.1);
  box-shadow: inset 0 0 0 1px rgba(34,211,238,.3);
  color: var(--cyan);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.card-icon svg { width: 23px; height: 23px; }

/* ---------------- process ---------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.7rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.8rem; } }
.step { position: relative; }
.step-num {
  width: 48px; height: 48px; border-radius: var(--r-pill);
  display: grid; place-items: center;
  background: rgba(7,13,26,.9);
  box-shadow: inset 0 0 0 1px rgba(34,211,238,.45), 0 0 26px rgba(34,211,238,.22);
  color: var(--cyan);
  font-family: var(--mono); font-weight: 500; font-size: 1.02rem;
  margin-bottom: 1.05rem; position: relative; z-index: 2;
}
.step h3 { margin-bottom: .38rem; }
.step p { margin: 0; color: var(--txt-2); font-size: .97rem; }
@media (min-width: 900px) {
  .step::after {
    content: ""; position: absolute; top: 23px; left: 58px; right: -1.8rem; height: 1px;
    background: linear-gradient(90deg, rgba(34,211,238,.45), rgba(34,211,238,.06));
    z-index: 1;
  }
  .step:last-child::after { display: none; }
}

/* ---------------- comparison ---------------- */
.compare-wrap {
  overflow-x: auto; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(11,20,38,.75);
  box-shadow: var(--lift);
}
.compare { width: 100%; border-collapse: collapse; min-width: 580px; }
.compare th, .compare td { padding: 1.05rem 1.15rem; text-align: left; font-size: .99rem; }
.compare thead th {
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  color: var(--txt-3); letter-spacing: -.01em;
  border-bottom: 1px solid var(--line);
  background: rgba(7,13,26,.6);
}
.compare thead th:nth-child(2) {
  color: var(--cyan);
  background: linear-gradient(180deg, rgba(34,211,238,.14), rgba(34,211,238,.03));
}
.compare tbody tr + tr { border-top: 1px solid var(--line-soft); }
.compare tbody td { color: var(--txt-2); }
.compare tbody td:first-child { color: #fff; font-weight: 500; width: 31%; }
.compare tbody td:nth-child(2) { background: rgba(34,211,238,.05); }
.compare .yes, .compare .no { display: grid; grid-template-columns: 20px 1fr; gap: .6rem; align-items: start; }
.compare .yes svg { color: var(--mint); }
.compare .no svg { color: #f4737d; }
.compare svg { width: 18px; height: 18px; margin-top: .25rem; }

/* ---------------- gallery ---------------- */
.gallery { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.shot {
  border-radius: var(--r); overflow: hidden;
  background: rgba(11,20,38,.7);
  border: 1px solid var(--line);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.shot:hover { border-color: rgba(34,211,238,.4); box-shadow: var(--glow); }
.shot-pair { display: grid; grid-template-columns: 1fr 1fr; }
.photo {
  position: relative; aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #16253f, #0b1426);
  background-size: cover; background-position: center;
  display: grid; place-items: center;
}
.photo span {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: #3f5677; text-align: center; padding: .5rem;
}
.tag {
  position: absolute; top: .55rem; left: .55rem;
  background: rgba(7,13,26,.85);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--txt-2);
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: 5px;
}
.tag.after { color: var(--mint); box-shadow: inset 0 0 0 1px rgba(52,230,176,.45); }
.shot-cap { padding: .95rem 1.1rem; font-size: .91rem; color: var(--txt-2); }
.shot-cap b {
  display: block; color: #fff; font-family: var(--display);
  font-size: 1rem; letter-spacing: -.015em; margin-bottom: .15rem;
}

/* ---------------- testimonials ---------------- */
.quote {
  background: linear-gradient(165deg, rgba(22,37,63,.55), rgba(11,20,38,.75));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.55rem; margin: 0;
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 2px; margin-bottom: .9rem; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.quote blockquote {
  margin: 0 0 1.2rem; font-size: 1.02rem; line-height: 1.62;
  color: var(--txt); flex: 1;
}
.quote figcaption { display: flex; align-items: center; gap: .75rem; font-size: .9rem; }
.avatar {
  width: 40px; height: 40px; border-radius: var(--r-pill); flex: none;
  background: rgba(34,211,238,.12);
  box-shadow: inset 0 0 0 1px rgba(34,211,238,.35);
  color: var(--cyan);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
}
.quote figcaption b { display: block; color: #fff; font-family: var(--display); font-weight: 600; }
.quote figcaption small { color: var(--txt-3); }

/* ---------------- link grid ---------------- */
.linkgrid {
  display: grid; gap: .7rem;
  grid-template-columns: repeat(auto-fill, minmax(214px, 1fr));
  list-style: none; padding: 0; margin: 0;
}
.linkgrid a {
  display: block; padding: .9rem 1.05rem;
  background: rgba(22,37,63,.45);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  text-decoration: none; color: #fff;
  font-family: var(--display); font-weight: 500; font-size: .97rem;
  letter-spacing: -.012em;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.linkgrid a:hover {
  border-color: rgba(34,211,238,.5); background: rgba(34,211,238,.07);
  color: var(--cyan); transform: translateX(3px);
}
.linkgrid small {
  display: block; font-family: var(--mono); font-weight: 400;
  font-size: .68rem; letter-spacing: .07em; color: var(--txt-3);
}

/* facts */
.facts { display: grid; gap: .8rem; grid-template-columns: 1fr; margin: 1.7rem 0 0; }
@media (min-width: 620px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact {
  background: rgba(22,37,63,.45);
  border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: .9rem 1rem;
}
.fact dt {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--txt-3);
}
.fact dd {
  margin: .25rem 0 0; font-family: var(--display); font-weight: 600;
  font-size: 1.02rem; color: #fff; letter-spacing: -.015em;
}

/* checklist */
.checks { list-style: none; padding: 0; margin: 1.35rem 0 0; display: grid; gap: 1rem; }
.checks li { display: grid; grid-template-columns: 24px 1fr; gap: .8rem; align-items: start; }
.checks svg { width: 21px; height: 21px; color: var(--mint); margin-top: .28rem; }
.checks span { color: var(--txt-2); }
.checks strong { display: block; font-family: var(--display); font-weight: 600; color: #fff; }

/* FAQ */
.faq { max-width: 850px; }
.faq details {
  background: rgba(22,37,63,.4);
  border: 1px solid var(--line); border-radius: var(--r);
  margin-bottom: .7rem;
  transition: border-color .16s ease;
}
.faq details[open] { border-color: rgba(34,211,238,.4); background: rgba(22,37,63,.7); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.15rem 3rem 1.15rem 1.35rem;
  font-family: var(--display); font-weight: 600; font-size: 1.04rem;
  color: #fff; letter-spacing: -.017em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.3rem; top: 1.45rem;
  width: 9px; height: 9px;
  border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.6rem; }
.faq details p { margin: 0 1.35rem 1.25rem; color: var(--txt-2); }

/* CTA band */
.band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, rgba(34,211,238,.14), rgba(124,92,255,.14));
  border-block: 1px solid var(--line);
  padding: clamp(2.6rem, 4.8vw, 3.9rem) 0;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 20% 50%, rgba(34,211,238,.18), transparent 70%);
}
.band .shell { position: relative; z-index: 2; }
.band h2 { color: #fff; margin-bottom: .5rem; }
.band p { color: #c3d6ef; max-width: 58ch; margin-bottom: 0; }
.band-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.6rem; }

/* breadcrumb */
.crumbs {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--txt-3); padding: 1.1rem 0 0;
}
.crumbs a { color: var(--txt-3); text-decoration: none; }
.crumbs a:hover { color: var(--cyan); }

/* prose */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.5rem; }
.prose p { color: var(--txt-2); }

/* footer */
.footer {
  background: rgba(5,10,20,.85);
  border-top: 1px solid var(--line);
  color: var(--txt-3); padding: 3.4rem 0 6.5rem; font-size: .93rem;
}
.footer h4 {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--cyan); margin: 0 0 .95rem; font-weight: 500;
}
.footer p { color: var(--txt-3); }
.footer a { color: var(--txt-2); text-decoration: none; }
.footer a:hover { color: var(--cyan); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: .2rem 0; }
.foot-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.6rem; } }
.legal {
  margin-top: 2.6rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .82rem; color: #55698a; line-height: 1.65;
}

/* mobile sticky bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; padding: .65rem;
  background: rgba(7,13,26,.9);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.callbar a {
  padding: .85rem .6rem; text-align: center; border-radius: var(--r-pill);
  font-family: var(--display); font-weight: 600; font-size: .99rem; text-decoration: none;
}
.callbar a:first-child {
  background: rgba(255,255,255,.05); color: var(--txt);
  box-shadow: inset 0 0 0 1px var(--line);
}
.callbar a:last-child {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-d));
  color: #041420;
  box-shadow: 0 0 22px rgba(34,211,238,.4);
}
@media (min-width: 940px) { .callbar { display: none; } .footer { padding-bottom: 3.4rem; } }

/* utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: -9999px; background: var(--cyan); color: #041420;
  padding: .8rem 1.2rem; z-index: 100; font-weight: 700; }
.skip:focus { left: 0; top: 0; }

@media (max-width: 700px) {
  .hero-grid { padding-top: 1.5rem; }
  .hero h1 { font-size: clamp(1.95rem, 8.2vw, 2.5rem); }
  .hero p.lede { font-size: 1.03rem; line-height: 1.56; }
  .record-body { padding: 1.2rem 1.2rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}


/* ---------------- service area map ---------------- */
.areamap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(16,28,51,.7), rgba(7,13,26,.9));
  padding: .8rem .8rem .3rem;
  box-shadow: var(--lift);
  margin-bottom: 2.2rem;
}
.areamap svg { width: 100%; height: auto; display: block; border-radius: var(--r); }

.areamap .lake { fill: url(#lakeGrad); }
.areamap .land { fill: url(#landGrad); stroke: #24507a; stroke-width: 1; }
.areamap .lake-label {
  fill: #2f5f86; font-family: var(--mono); font-size: 15px;
  letter-spacing: .42em; text-transform: uppercase;
}
.areamap .cty {
  stroke: #23405f; stroke-width: 1; stroke-dasharray: 5 7;
}
.areamap .cty-label {
  fill: #3d5f83; font-family: var(--mono); font-size: 12px;
  letter-spacing: .2em; text-anchor: middle;
}
.areamap .stateline { stroke: #35527a; stroke-width: 1.5; stroke-dasharray: 2 5; }
.areamap .state-label {
  fill: #35527a; font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
}

.areamap .mk { cursor: pointer; }
.areamap .mk-halo { fill: rgba(34,211,238,.1); opacity: 0; transition: opacity .18s ease; }
.areamap .mk-dot {
  fill: #0b1426; stroke: var(--cyan); stroke-width: 2.5;
  transition: fill .18s ease, stroke .18s ease, r .18s ease;
}
.areamap .mk--primary .mk-dot { fill: var(--cyan); stroke: #7ceaff; }
.areamap .mk-label {
  fill: #cfe2f5; font-family: var(--display); font-weight: 600;
  font-size: 15px; letter-spacing: -.01em;
  transition: fill .18s ease;
  paint-order: stroke; stroke: #070d1a; stroke-width: 4px; stroke-linejoin: round;
}
.areamap .mk:hover .mk-halo,
.areamap .mk:focus-visible .mk-halo { opacity: 1; }
.areamap .mk:hover .mk-dot,
.areamap .mk:focus-visible .mk-dot { fill: var(--cyan); stroke: #a5f3fc; }
.areamap .mk:hover .mk-label,
.areamap .mk:focus-visible .mk-label { fill: #fff; }
.areamap .mk:focus-visible { outline: none; }
.areamap .mk:focus-visible .mk-dot { stroke-width: 4; }

.areamap-hint {
  margin: .7rem .4rem .5rem; text-align: center;
  font-size: .88rem; color: var(--txt-3);
}

/* the map is dense; on small screens let it scroll horizontally */
@media (max-width: 620px) {
  .areamap { padding: .5rem .5rem .2rem; }
  .areamap > svg { min-width: 620px; }
  .areamap-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .areamap .mk-label { font-size: 17px; }
  .areamap-hint { font-size: .82rem; }
}
