.expand-card {
  position: relative;
  height: 100%;
  cursor: pointer;
  outline: none;
}

.cards {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.expand-card h3 {
  margin-top: 12px;
}

.expand-card i {
  position: absolute;
  right: 30px;
  bottom: 25px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c9b2ff;
  color: #17313a;
  font-size: 23px;
  font-style: normal;
  line-height: 1;
  transition: transform .25s ease, background .25s ease;
}

.expand-card:hover i,
.expand-card:focus-visible i {
  transform: rotate(90deg);
  background: #fff;
}

.expand-card:focus-visible {
  box-shadow: 0 0 0 2px #c9b2ff inset;
}

.about-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 42px;
  padding: 12px 23px;
  border: 1px solid rgba(23, 49, 58, .38);
  border-radius: 999px;
  background: transparent;
  color: #17313a;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.about-more-button:hover,
.about-more-button:focus-visible {
  background: rgba(23, 49, 58, .07);
  border-color: rgba(23, 49, 58, .62);
  transform: translateY(-2px);
  outline: none;
}

.mso-info {
  position: relative;
  top: -.72em;
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  margin: 0 0 0 4px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  vertical-align: baseline;
  background: transparent;
  color: #17313a;
  font: 600 8px/1 Manrope, Arial, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.mso-info:hover,
.mso-info:focus-visible {
  background: #17313a;
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.location-trigger {
  width: 100%;
  padding: 18px 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .27);
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .25s ease;
}

.location-trigger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.location-trigger > span {
  padding: 0;
  border: 0;
}

.state-mark {
  flex: 0 0 auto;
  width: 34px;
  height: 31px;
  fill: transparent;
  stroke: rgba(255,255,255,.92);
  stroke-width: .7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .82;
}

.state-mark path { vector-effect: non-scaling-stroke; }

.state-mark.combined { width: 47px; }

@media (min-width: 681px) {
  .location-list {
    position: relative;
    left: -20px;
    width: calc(100% + 20px);
  }
}

.location-trigger:hover,
.location-trigger:focus-visible {
  background: rgba(8, 31, 38, .11);
  color: #fff;
  outline: none;
}

.location-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 49, 58, .14);
  font-size: 13px;
  color: #60777e;
}

.region-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(230px, .92fr);
  gap: 34px;
  align-items: start;
  min-height: 225px;
}

.region-overview > p {
  margin: 26px 0 0;
}

.region-map {
  width: 100%;
  height: 250px;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  overflow: visible;
}

.region-map svg {
  display: block;
  width: 100%;
  height: 250px;
  max-height: none;
  overflow: visible;
}

.region-map svg[aria-label="California regional coverage map"] {
  transform: none;
  translate: none;
}

.region-map svg[aria-label="Florida regional coverage map"] {
  transform: none;
  translate: none;
}

@media (min-width: 681px) {
  .region-map svg[aria-label="California regional coverage map"] {
    transform: scale(1.2);
    transform-origin: center;
  }

  .region-map svg[aria-label="Florida regional coverage map"] {
    transform: scale(1.1);
    transform-origin: center;
  }

  .region-map svg[aria-label="Texas and Louisiana regional coverage map"] {
    transform: scale(1.2);
    transform-origin: center;
  }
}

.region-map-shape {
  fill: #d9e0de;
  stroke: none;
  vector-effect: non-scaling-stroke;
}

.region-map svg[aria-label="Texas and Louisiana regional coverage map"] .region-map-shape {
  stroke: #f7faf9;
  stroke-width: 1.5;
}

.region-map-dot-ring {
  r: 2.6px;
  fill: rgba(201, 178, 255, .28);
  stroke: #c9b2ff;
  stroke-width: 1.1;
  transform-box: fill-box;
  transform-origin: center;
  animation: location-pulse 1.9s ease-out infinite;
}

.region-map-dot {
  r: 1.4px;
  fill: #c9b2ff;
  stroke: #8e5d3a;
  stroke-width: .8;
  transform-box: fill-box;
  transform-origin: center;
  animation: location-dot-pulse 1.9s ease-in-out infinite;
}

@keyframes location-pulse {
  0%, 22% { opacity: .8; transform: scale(.9); }
  72%, 100% { opacity: 0; transform: scale(1.55); }
}

@keyframes location-dot-pulse {
  0%, 100% { opacity: .05; transform: scale(.05); }
  42%, 68% { opacity: 1; transform: scale(1); }
}

#modal-title {
  white-space: pre-line;
}

.desktop-title-break {
  display: initial;
}

@media (max-width: 680px) {
  .region-overview { grid-template-columns: 1fr; gap: 12px; min-height: 0; }
  .region-overview > p { margin-top: 8px; }
  .region-map { grid-row: 1; margin: 0 auto 8px; width: min(440px, 100%); height: 275px; }
  .region-map svg { width: 100%; height: 275px; }
}

.faq-extra {
  display: none;
}

.faqs.expanded .faq-extra {
  display: block;
}

.faq-toggle {
  margin-top: 24px;
  padding: 11px 20px;
  border: 1px solid rgba(23, 49, 58, .3);
  border-radius: 999px;
  background: transparent;
  color: #17313a;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.faq-toggle:hover,
.faq-toggle:focus-visible {
  background: rgba(23, 49, 58, .06);
  border-color: rgba(23, 49, 58, .55);
  transform: translateY(-1px);
  outline: none;
}

.market-section {
  overflow: hidden;
}

.market-intro {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(240px, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(24px, 3vw, 44px);
  align-items: center;
}

.market-intro > .eyebrow,
.market-intro > h2 {
  grid-column: 1;
}

.market-chart {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  max-width: 640px;
  justify-self: end;
  opacity: .5;
}

.market-chart svg {
  display: block;
  width: 100%;
  height: clamp(150px, 17vw, 220px);
  overflow: visible;
}

.market-chart path {
  fill: none;
  stroke: #7952c7;
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: market-line-draw 11.5s cubic-bezier(.25,.1,.25,1) 1.1s forwards;
  animation-play-state: paused;
}

.market-intro.is-visible .market-chart path {
  animation-play-state: running;
}

.market-chart path:nth-child(2) { stroke: #287383; opacity: .43; animation-duration: 13.5s; animation-delay: 3s; }
.market-chart path:nth-child(3) { stroke: #5cad8e; opacity: .24; animation-duration: 16s; animation-delay: 1.1s; }
.market-chart path:nth-child(4) { stroke: #8ab9a8; opacity: .38; animation-duration: 14.5s; animation-delay: 5s; }

@keyframes market-line-draw {
  to { stroke-dashoffset: 0; }
}

.market-intro h2 {
  font-size: clamp(40px, 4.7vw, 65px);
  line-height: 1.04;
}

.market-body {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 9vw, 125px);
  margin-top: 32px;
  align-items: start;
}

.market-narrative p {
  margin: 0 0 18px;
  color: #5a7178;
  font-size: 17px;
}

.market-grid {
  display: block;
  margin-top: 0;
  border-top: 1px solid rgba(23, 49, 58, .14);
}

.market-point {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  min-height: 0;
  padding: 23px 0;
  border-bottom: 1px solid rgba(23, 49, 58, .14);
  cursor: pointer;
  transition: background .22s ease;
}

.market-point + .market-point {
  padding-left: 0;
  border-left: 0;
}

.market-point span {
  color: #287383;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.market-point h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.market-point p {
  margin: 0;
  color: #5a7178;
  font-size: 14px;
}

.market-point:hover,
.market-point:focus-visible {
  background: rgba(23, 49, 58, .045);
  outline: none;
}

.market-action {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .market-intro { display: block; }
  .market-chart { display: none; }
  .market-body { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .market-chart path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 680px) {
  .market-intro h2 { font-size: 39px; }
  .market-body { margin-top: 38px; gap: 25px; }
  .market-point { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 27, 33, .56);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(720px, calc(100svh - 48px));
  overflow: hidden;
  border-radius: 26px;
  background: rgba(247, 250, 249, .97);
  color: #17313a;
  transform: translateY(12px) scale(.985);
  transition: transform .25s ease;
}

.modal.open .modal-panel {
  transform: none;
}

.modal.legal-view .modal-panel {
  width: min(960px, 100%);
}

.modal.about-feature-view .modal-panel {
  width: min(900px, 100%);
}

.modal.about-feature-view .modal-scroll {
  padding: 0;
}

.about-feature-media {
  position: relative;
  height: clamp(225px, 30vw, 278px);
  overflow: hidden;
  background: #17313a;
}

.about-feature-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.about-feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 28, 34, .03) 22%, rgba(8, 28, 34, .18) 52%, rgba(8, 28, 34, .9) 100%);
}

.about-feature-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 7vw, 66px);
  right: clamp(28px, 7vw, 66px);
  bottom: clamp(28px, 5vw, 44px);
}

.about-feature-copy .eyebrow {
  margin: 0 0 12px;
}

.modal .about-feature-copy #modal-title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.01;
}

.about-feature-body {
  padding: clamp(22px, 3.5vw, 35px) clamp(42px, 7vw, 70px) clamp(42px, 7vw, 70px);
}

.modal.about-feature-view .modal-close {
  z-index: 5;
}

.modal.legal-view #modal-content {
  font-size: 14px;
  line-height: 1.7;
}

.modal.legal-view #modal-content h2,
.modal.legal-view #modal-content h3,
.modal.legal-view #modal-content h4 {
  margin: 30px 0 10px;
  color: #17313a;
  letter-spacing: -.015em;
}

.modal.legal-view #modal-content ul,
.modal.legal-view #modal-content ol {
  padding-left: 22px;
}

.footer-legal {
  background: #173b46;
  color: #fff;
  padding: 26px max(24px, calc((100vw - 1160px)/2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 45px;
  align-items: center;
  font-size: 10px;
}

.footer-credit a {
  display: inline-block;
  margin-left: 30px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

@media (min-width: 761px) {
  .footer-legal {
    padding-right: max(74px, calc((100vw - 1160px)/2));
  }
}

.footer-links button,
.footer-links a {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links a:hover,
.footer-links button:focus-visible,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.contact-lines a[href^="mailto:"] {
  width: fit-content;
  margin-left: -10px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color .22s ease, background .22s ease;
}

.contact-lines a[href^="mailto:"]:hover,
.contact-lines a[href^="mailto:"]:focus-visible {
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  outline: none;
}

@media (max-width: 760px) {
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-credit {
    display: contents;
  }

  .footer-copyright {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-links {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .footer-credit a {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .about-feature-media { height: 330px; }
  .about-feature-body { padding: 38px 26px 48px; }
  .modal .about-feature-copy #modal-title { font-size: clamp(35px, 10vw, 47px); }
}

.modal-scroll {
  max-height: min(720px, calc(100svh - 48px));
  overflow-y: auto;
  padding: clamp(42px, 7vw, 72px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.modal-close:hover {
  background: #17313a;
  transform: rotate(90deg);
}

.modal h2 {
  max-width: 590px;
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
}

#modal-content p {
  margin: 0 0 18px;
  color: #526a72;
  font-size: 16px;
}

#modal-content ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

#modal-content li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-top: 1px solid rgba(23, 49, 58, .14);
  color: #405b63;
  line-height: 1.55;
}

#modal-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9b2ff;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .expand-card i { right: 24px; bottom: 22px; }
  .modal { padding: 14px; }
  .modal-panel,
  .modal-scroll { max-height: calc(100svh - 28px); }
  .modal-scroll { padding: 55px 25px 34px; }
  .modal-close { top: 12px; right: 12px; }
}
