* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Code Pro", "CodePro", "Inter", system-ui, -apple-system,
    sans-serif;
  background: #0b1e2d;
  color: #eef7f8;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1756a1, #0b1e2d 65%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  gap: 24px;
  position: sticky;
  top: 0;
  background: rgba(11, 30, 45, 0.7);
  backdrop-filter: blur(6px);
  z-index: 10;
  transition: padding 0.3s ease, background 0.3s ease;
}

.brand {
  font-family: "Code Pro", "CodePro", "Inter", system-ui, -apple-system,
    sans-serif;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.brand img {
  display: block;
  height: 190px;
  margin: -50px;
  width: auto;
  transition: height 0.3s ease, margin 0.3s ease;
}

.site-header.is-compact {
  padding: 10px 48px;
}

.site-header.is-compact .brand img {
  height: 120px;
  margin: 0;
}

.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link {
  color: #cfe9ee;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;
  position: relative;
  padding-bottom: 2px;
}

.nav-link:hover {
  color: #8fe1e6;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: rgba(10, 26, 39, 0.98);
  border: 1px solid rgba(143, 225, 230, 0.2);
  border-radius: 12px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 18px 32px rgba(5, 33, 48, 0.35);
  z-index: 20;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown a {
  color: #e6f6f7;
  text-decoration: none;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-dropdown a:hover {
  background: rgba(55, 168, 161, 0.18);
  color: #8fe1e6;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: flex;
}

.has-caret::after {
  content: "▾";
  font-size: 10px;
  margin-left: 6px;
}

.login {
  color: #cfe9ee;
  text-decoration: none;
  font-size: 14px;
}

.login:hover {
  color: #8fe1e6;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58vh;
  text-align: left;
  padding: 80px 48px 60px;
  gap: 32px;
}

.hero-content,
.hero-media {
  flex: 1 1 0;
}

.hero-content h1 {
  font-family: "Code Pro", "CodePro", "Inter", system-ui, -apple-system,
    sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-content p {
  max-width: 560px;
  margin: 0 0 26px;
  color: #b7e3ea;
  font-size: 15px;
  line-height: 1.6;
}

.subpage {
  padding: 80px 48px 100px;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.subpage h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}

/* Location page feature cards */
.location-features {
  margin: 32px -48px 0;
  padding: 48px 0 0;
}

.location-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.location-feature-card {
  background: rgba(10, 26, 39, 0.75);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 14px 28px rgba(5, 33, 48, 0.22);
  border: 1px solid rgba(143, 225, 230, 0.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-feature-icon {
  width: 48px;
  height: 48px;
  color: #37a8a1;
  flex-shrink: 0;
}

.location-feature-icon svg {
  width: 100%;
  height: 100%;
}

.location-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f1fbfc;
  margin: 0;
  line-height: 1.25;
}

.location-feature-desc {
  font-size: 0.9375rem;
  color: #cfe9ee;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .location-features {
    margin: 24px -24px 0;
    padding: 32px 0 0;
  }

  .location-features-grid {
    grid-template-columns: 1fr;
  }
}

.subpage-section {
  padding-top: 16px;
  border-top: 1px solid rgba(143, 225, 230, 0.2);
  display: grid;
  gap: 8px;
  scroll-margin-top: calc(var(--header-height, 140px) + 16px);
}

.subpage-section p {
  color: #cfe9ee;
}

.subpage-section a {
  color: #8fe1e6;
  text-decoration: underline;
}

.subpage-section a:hover {
  color: #b7e3ea;
}

.faq-section {
  gap: 18px;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-accordion details {
  background: rgba(10, 26, 39, 0.75);
  border: 1px solid rgba(143, 225, 230, 0.22);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 14px 28px rgba(5, 33, 48, 0.22);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-accordion details:hover {
  border-color: rgba(143, 225, 230, 0.5);
  box-shadow: 0 16px 36px rgba(5, 33, 48, 0.35),
    0 0 0 1px rgba(143, 225, 230, 0.2);
}

.faq-accordion summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: #f1fbfc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(18, 48, 84, 0.55);
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  font-size: 1.4rem;
  color: #8fe1e6;
}

.faq-accordion details[open] summary::after {
  content: "–";
}

.faq-accordion details p,
.faq-accordion details ul {
  margin-top: 12px;
  color: #cfe9ee;
  line-height: 1.6;
}

.faq-accordion details ul {
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.faq-accordion details > :not(summary) {
  padding: 0 20px 18px;
}

.faq-accordion details[open] summary {
  background: rgba(18, 48, 84, 0.75);
}

.faq-cta {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(18, 48, 84, 0.8);
  border: 1px solid rgba(143, 225, 230, 0.22);
  display: grid;
  gap: 10px;
}

.about-page {
  gap: 36px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(143, 225, 230, 0.8);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(240px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(23, 86, 161, 0.25), rgba(10, 26, 39, 0.9));
  border: 1px solid rgba(143, 225, 230, 0.22);
  box-shadow: 0 20px 40px rgba(5, 33, 48, 0.35);
}

.about-hero-content {
  display: grid;
  gap: 16px;
}

.about-hero-content h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  line-height: 1.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero-media {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 18px 32px rgba(5, 33, 48, 0.35);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-grid,
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.about-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(10, 26, 39, 0.75);
  border: 1px solid rgba(143, 225, 230, 0.22);
  box-shadow: 0 14px 28px rgba(5, 33, 48, 0.25);
  display: grid;
  gap: 8px;
}

.about-card h3 {
  font-size: 1.05rem;
  color: #f1fbfc;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: 24px;
  align-items: start;
  margin-top: 12px;
}

.story-media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 14px 28px rgba(5, 33, 48, 0.25);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subpage-section ol {
  margin-left: 18px;
  color: #cfe9ee;
  display: grid;
  gap: 8px;
}

.subpage-section blockquote {
  margin: 12px 0;
  padding: 16px 18px;
  border-left: 3px solid rgba(143, 225, 230, 0.6);
  background: rgba(12, 34, 48, 0.55);
  color: #f3fbfc;
  font-style: italic;
}

.team-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.team-card,
.value-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(18, 48, 84, 0.8);
  border: 1px solid rgba(143, 225, 230, 0.22);
  box-shadow: 0 14px 28px rgba(5, 33, 48, 0.25);
  display: grid;
  gap: 8px;
}

.team-card h3,
.value-card h3 {
  font-size: 1.05rem;
  color: #f1fbfc;
}

.team-card {
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(230, 246, 247, 0.15);
  border: 2px solid rgba(143, 225, 230, 0.4);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #e6f6f7;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-size: 1.15rem;
}

.team-quote {
  color: #d7f4f7;
  font-style: italic;
}

.team-role {
  color: #8fe1e6;
  font-weight: 600;
}

.product-section {
  gap: 14px;
  min-height: calc(100vh - 220px);
  padding-bottom: clamp(32px, 6vh, 72px);
}

.product-title {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
}

.product-tagline {
  font-size: 1rem;
  font-style: italic;
  color: #cfe9ee;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-icon {
  font-size: 1.3rem;
}

.product-heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: #e5f5f7;
}

.product-subheading {
  color: #b7e3ea;
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: rgba(12, 34, 48, 0.7);
  border: 1px solid rgba(143, 225, 230, 0.22);
}

.product-summary-image {
  width: 100%;
  height: 100%;
  min-height: 140px;
  border-radius: 16px;
  background: rgba(143, 225, 230, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.product-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.product-summary-text {
  display: grid;
  gap: 12px;
}

.product-details {
  list-style: disc;
  padding-left: 18px;
  color: #b7e3ea;
  display: grid;
  gap: 6px;
}

.product-details li {
  line-height: 1.45;
}

.components-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin-top: 6px;
}

.component-card {
  flex: 1 1 220px;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  padding: 18px;
  border-radius: 16px;
  background: rgba(10, 26, 39, 0.75);
  border: 1px solid rgba(143, 225, 230, 0.22);
  box-shadow: 0 14px 28px rgba(5, 33, 48, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.component-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.component-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(143, 225, 230, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #e6f6f7;
}

img.component-icon {
  object-fit: contain;
  padding: 8px;
}

.component-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #f1fbfc;
}

.component-card p {
  margin-top: auto;
  color: #b7e3ea;
  font-size: 0.95rem;
  line-height: 1.4;
}

.primary-cta {
  background: #2f93a5;
  color: #031a23;
  border: 1px solid #37a8a1;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.primary-cta:hover {
  background: #37a8a1;
}

.secondary-cta {
  background: transparent;
  color: #e6f6f7;
  border: 1px solid rgba(143, 225, 230, 0.6);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
}

.secondary-cta:hover {
  background: rgba(55, 168, 161, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px 24px;
  display: flex;
  justify-content: center;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-card {
  width: min(960px, 94vw);
  background: rgba(10, 26, 39, 0.98);
  border: 1px solid rgba(143, 225, 230, 0.28);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 32px rgba(5, 33, 48, 0.45);
  display: grid;
  gap: 16px;
}

.cookie-content h2 {
  font-size: 1.2rem;
  color: #f1fbfc;
  margin-bottom: 6px;
}

.cookie-content p {
  color: #cfe9ee;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-preferences {
  border-top: 1px solid rgba(143, 225, 230, 0.2);
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfe9ee;
}

.cookie-option input {
  accent-color: #37a8a1;
}

.hero-media {
  max-width: none;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(5, 33, 48, 0.45);
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0.95);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(11, 30, 45, 0.45);
  color: #f1fbfc;
  border: none;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.3px;
  transition: opacity 0.3s ease;
}

.hero-video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(55, 168, 161, 0.85);
  color: #0b1e2d;
  font-size: 18px;
  box-shadow: 0 10px 18px rgba(5, 33, 48, 0.4);
}

.hero-video-text {
  font-size: 0.95rem;
}

.hero-media.is-playing .hero-video-overlay {
  opacity: 0;
  pointer-events: none;
}


.bundle {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.2fr) minmax(240px, 0.9fr);
  gap: 32px;
  padding: 60px 48px 80px;
  background: linear-gradient(135deg, rgba(23, 86, 161, 0.35), rgba(10, 26, 39, 0.9));
  border-radius: 20px;
  margin: 0 48px 80px;
}

.home-content {
  max-width: 960px;
  margin: 0 auto;
}

.home-content .bundle {
  margin: 0 0 80px;
}

.bundle-what-we-do {
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.2fr);
}

.bundle-alt {
  display: block;
}

.bundle-alt .bundle-media {
  float: right;
  width: 36%;
  max-width: 300px;
  height: 300px;
  margin-left: 32px;
  margin-bottom: 24px;
}

.bundle-alt .bundle-content {
  overflow: hidden;
}

.bundle-alt::after {
  content: "";
  display: table;
  clear: both;
}

.bundle-tagline {
  font-size: 0.9rem !important;
  letter-spacing: 0.5px;
  color: #8fe1e6 !important;
  margin-top: 16px !important;
  padding-left: 16px;
  border-left: 3px solid rgba(212, 175, 55, 0.6);
}

.bundle-media {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  align-self: stretch;
}

.bundle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bundle-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #e6f6f7;
}

.bundle-pill {
  align-self: flex-start;
  background: rgba(230, 246, 247, 0.12);
  color: #e6f6f7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
}

.bundle-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
}

.bundle-content p {
  color: #cfe9ee;
  line-height: 1.7;
  font-size: 14px;
}

.bundle-content h3 {
  font-size: 1.1rem;
  margin-top: 6px;
}

.bundle-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.bundle-content li::before {
  content: "✓";
  color: #8fe1e6;
  margin-right: 10px;
}

.bundle-metrics {
  background: rgba(230, 246, 247, 0.12);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 20px;
}

.metric-card {
  background: rgba(10, 26, 39, 0.6);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.metric-number {
  font-size: 2rem;
  font-weight: 600;
}

.metric-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  color: #b7e3ea;
}

.site-footer {
  padding: 56px 48px 32px;
  background: #0a1a27;
  color: #cfe9ee;
}

.footer-signup {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 20px 0 32px;
}

.footer-signup-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-signup-text {
  max-width: 520px;
  color: #b7e3ea;
  font-size: 14px;
  line-height: 1.6;
}

.footer-signup-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(230, 246, 247, 0.08);
  border: 1px solid rgba(143, 225, 230, 0.3);
  border-radius: 999px;
  padding: 6px;
}

.footer-signup-form input {
  background: transparent;
  border: none;
  color: #e6f6f7;
  padding: 8px 12px;
  min-width: 260px;
  font-size: 13px;
}

.footer-signup-form input::placeholder {
  color: rgba(230, 246, 247, 0.7);
}

.footer-signup-form input:focus {
  outline: none;
}

.footer-signup-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2f93a5;
  color: #031a23;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
}

.footer-signup-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-signup-button:hover {
  background: #37a8a1;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cta h2 {
  font-family: "Code Pro", "CodePro", "Inter", system-ui, -apple-system,
    sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #e6f6f7;
}

.footer-cta-text {
  flex: 1;
  min-width: 0;
}

.footer-cta-text p {
  color: #cfe9ee;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 8px 0 0;
}

.footer-divider {
  height: 1px;
  background: rgba(47, 147, 165, 0.35);
  margin: 32px 0 40px;
}

.footer-links {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Code Pro", "CodePro", "Inter", system-ui, -apple-system,
    sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #e6f6f7;
  padding-right: 24px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 28px;
  flex: 0 0 60%;
  min-width: 280px;
  margin-left: auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.footer-title {
  font-size: 12px;
  text-transform: none;
  color: #9bd2dd;
  margin-bottom: 2px;
}

.footer-column a {
  color: #e6f6f7;
  text-decoration: none;
}

.footer-column a:hover {
  color: #8fe1e6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  font-size: 12px;
  color: #7fbac8;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-disclaimer {
  flex-basis: 100%;
  font-size: 12px;
  color: #9bd2dd;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7fbac8;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #8fe1e6;
}

.footer-social a {
  color: #7fbac8;
  text-decoration: none;
}

.footer-social a:hover {
  color: #8fe1e6;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 30, 0.75);
}

.modal-dialog {
  position: relative;
  background: #0a1a27;
  border: 1px solid rgba(143, 225, 230, 0.2);
  border-radius: 16px;
  max-width: 860px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(5, 33, 48, 0.45);
}

.modal-content {
  padding: 32px;
  overflow-y: auto;
  max-height: 85vh;
  display: grid;
  gap: 14px;
  color: #e6f6f7;
}

.modal-content h2 {
  font-size: 1.8rem;
}

.modal-content h3 {
  margin-top: 8px;
  font-size: 1.2rem;
}

.modal-content h4 {
  margin-top: 4px;
  font-size: 1rem;
  color: #b7e3ea;
}

.modal-content ul {
  list-style: disc;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.modal-content p {
  color: #cfe9ee;
  line-height: 1.6;
  font-size: 14px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(230, 246, 247, 0.15);
  color: #e6f6f7;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

.modal-close:hover {
  background: rgba(230, 246, 247, 0.25);
}

.cta-form-modal .modal-dialog {
  max-width: 640px;
  max-height: 90vh;
}

.cta-form-container {
  overflow-y: auto;
  max-height: 85vh;
  padding: 0;
}

.cta-form-container iframe {
  display: block;
  min-height: 1304px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(55, 168, 161, 0.6);
  color: #cfe9ee;
  padding: 6px 12px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .about-hero,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 70px 24px 50px;
  }

  .hero-content p {
    margin: 0 auto 26px;
  }

  .bundle {
    grid-template-columns: 1fr;
    margin: 0 24px 70px;
    padding: 50px 24px 60px;
  }

  .bundle-alt .bundle-media {
    float: none;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-bottom: 24px;
  }

  .bundle-media {
    min-height: 280px;
  }

  .footer-signup {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-signup-group {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-signup-form {
    width: 100%;
    justify-content: space-between;
  }

  .footer-signup-form input {
    min-width: 0;
    flex: 1;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0 0;
  }

  .nav.open {
    display: flex;
  }

  .nav-item {
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    max-width: 240px;
    box-shadow: none;
  }

  .login {
    margin-left: auto;
  }

  .footer-cta {
    align-items: flex-start;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}
