@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #06111f;
  --bg-deep: #081a31;
  --bg-soft: #0b2548;
  --surface: rgba(8, 26, 49, 0.72);
  --surface-strong: rgba(10, 33, 64, 0.92);
  --surface-muted: rgba(18, 53, 96, 0.62);
  --line: rgba(155, 220, 255, 0.16);
  --ink: #f5fbff;
  --muted: #bdd7f0;
  --brand: #2ab4ff;
  --brand-strong: #0b76ff;
  --accent: #7ee7ff;
  --shadow: 0 28px 80px rgba(2, 9, 20, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(42, 180, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(126, 231, 255, 0.12), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(11, 118, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #04101d 0%, #07192e 30%, #08152a 100%);
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(24px);
}

body::before {
  width: 22rem;
  height: 22rem;
  left: -7rem;
  top: 14rem;
  background: rgba(42, 180, 255, 0.12);
}

body::after {
  width: 26rem;
  height: 26rem;
  right: -10rem;
  top: 5rem;
  background: rgba(11, 118, 255, 0.16);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.045em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #08203a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(26px) saturate(150%);
  background: rgba(4, 15, 28, 0.7);
  border-bottom: 1px solid rgba(126, 231, 255, 0.09);
}

.topbar {
  border-bottom: 1px solid rgba(126, 231, 255, 0.1);
  background: linear-gradient(90deg, rgba(7, 33, 64, 0.95), rgba(12, 50, 92, 0.75));
}

.topbar-shell {
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  color: rgba(230, 246, 255, 0.82);
}

.topbar a {
  color: var(--accent);
  font-weight: 700;
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  width: min(320px, 54vw);
}

.nav-links,
.nav-actions,
.nav-services {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-links {
  font-size: 0.88rem;
  color: rgba(232, 246, 255, 0.88);
}

.nav-links > a,
.service-dropdown-trigger {
  white-space: nowrap;
  line-height: 1;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-actions .button {
  min-height: 2.8rem;
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-links > a.is-active,
.service-dropdown-trigger:hover {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.92rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #67dcff, #2b91ff 58%, #115bff);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 44px rgba(12, 108, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(126, 231, 255, 0.18);
  box-shadow: none;
}

.button-ghost {
  width: fit-content;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(126, 231, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.26rem auto;
  border-radius: 999px;
  background: #fff;
}

.service-dropdown {
  position: relative;
  padding-bottom: 0.65rem;
  margin-bottom: -0.65rem;
}

.service-dropdown summary {
  list-style: none;
}

.service-dropdown summary::-webkit-details-marker {
  display: none;
}

.service-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  cursor: pointer;
  color: rgba(232, 246, 255, 0.88);
}

.service-dropdown-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.service-dropdown[open] .service-dropdown-icon {
  transform: rotate(45deg);
}

.service-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem;
  margin-top: 0.3rem;
  border-radius: 22px;
  border: 1px solid rgba(126, 231, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 28, 52, 0.98), rgba(6, 18, 34, 0.98));
  box-shadow: var(--shadow);
}

.service-dropdown-menu a {
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  color: rgba(233, 246, 255, 0.88);
}

.service-dropdown-menu a:hover {
  background: rgba(126, 231, 255, 0.08);
  color: #fff;
}

main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 4.8rem 0 2rem;
}

.page-hero {
  padding: 4rem 0 1.2rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: stretch;
}

.hero-copy,
.page-hero-copy,
.hero-panel-card,
.floating-card,
.spotlight-card,
.service-card,
.content-panel,
.faq-item,
.contact-card,
.quote-card,
.process-step,
.area-card,
.surface-banner {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14, 42, 78, 0.74), rgba(6, 19, 37, 0.92)),
    rgba(9, 24, 44, 0.78);
  box-shadow: var(--shadow);
}

.hero-copy,
.page-hero-copy {
  padding: 3rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero-copy::before,
.page-hero-copy::before {
  content: "";
  position: absolute;
  inset: -25% auto auto 58%;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(126, 231, 255, 0.1);
  filter: blur(16px);
}

.eyebrow,
.section-label,
.panel-kicker,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(126, 231, 255, 0.08);
  border: 1px solid rgba(126, 231, 255, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.96;
  margin-bottom: 1.15rem;
}

.hero-copy p,
.page-hero-copy p {
  max-width: 58ch;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.floating-card,
.hero-panel-card {
  padding: 1.55rem;
  border-radius: 26px;
}

.floating-card strong,
.hero-panel-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.hero-visual {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(126, 231, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(126, 231, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(10, 31, 56, 0.9), rgba(5, 16, 31, 0.98));
  box-shadow: var(--shadow);
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-height: 40rem;
  padding: 1rem;
}

.hero-photo-card,
.card-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero-photo-card::after,
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 14, 28, 0.02), rgba(4, 14, 28, 0.44));
}

.hero-photo-card img,
.card-media img,
.hero-panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card-primary {
  grid-row: 1 / span 2;
}

.hero-photo-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(7, 25, 49, 0.2), rgba(7, 25, 49, 0.72));
  backdrop-filter: blur(10px);
}

.hero-photo-label strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.hero-photo-label span {
  color: rgba(230, 245, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section {
  padding: 2.4rem 0;
}

.section-stack {
  display: grid;
  gap: 1.4rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.surface-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

.section-heading p {
  max-width: 42ch;
}

.spotlight-grid,
.service-grid,
.area-grid,
.contact-grid,
.content-grid {
  display: grid;
  gap: 1rem;
}

.spotlight-grid,
.service-grid,
.area-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.spotlight-card,
.process-step,
.area-card,
.contact-card,
.quote-card,
.content-panel {
  padding: 1.6rem;
  border-radius: 24px;
}

.spotlight-card h3,
.process-step h3,
.area-card h3,
.quote-card h2,
.contact-card h2,
.content-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 1.28rem;
}

.service-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 26px;
  overflow: hidden;
}

.card-media {
  aspect-ratio: 16 / 11;
}

.hero-panel-card-photo {
  overflow: hidden;
  padding: 0;
}

.hero-panel-body {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.content-panel-muted {
  background:
    linear-gradient(180deg, rgba(13, 39, 70, 0.92), rgba(9, 21, 38, 0.96));
}

.service-chip,
.service-arrow,
.service-tags span,
.tag-cloud span,
.footer-tag-list span,
.meta-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-chip {
  background: rgba(126, 231, 255, 0.1);
  color: var(--accent);
}

.service-arrow {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(227, 244, 255, 0.72);
}

.service-card h3 {
  font-size: 1.4rem;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.service-tags,
.tag-cloud,
.footer-link-list,
.footer-tag-list,
.meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-tags span,
.tag-cloud span,
.footer-tag-list span,
.meta-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 231, 255, 0.12);
  color: rgba(233, 247, 255, 0.86);
}

.surface-banner {
  padding: 2rem;
  border-radius: 32px;
  display: grid;
  gap: 1.4rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(126, 231, 255, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(18, 53, 96, 0.95), rgba(6, 18, 34, 0.94));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step span,
.area-card span,
.contact-card span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-grid {
  display: grid;
  gap: 0.9rem;
}

.blog-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14, 42, 78, 0.74), rgba(6, 19, 37, 0.92)),
    rgba(9, 24, 44, 0.78);
  box-shadow: var(--shadow);
}

.blog-card h3 {
  font-size: 1.45rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: rgba(215, 237, 255, 0.72);
  font-size: 0.88rem;
}

.article-shell {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
}

.article-intro,
.article-section,
.article-cta {
  padding: 1.7rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14, 42, 78, 0.74), rgba(6, 19, 37, 0.92)),
    rgba(9, 24, 44, 0.78);
  box-shadow: var(--shadow);
}

.article-intro {
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

.article-section + .article-section,
.article-section + .article-cta,
.article-cta + .section-stack {
  margin-top: 1.5rem;
}

.article-section h2,
.article-cta h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.article-section p + p,
.article-cta p + p {
  margin-top: 1rem;
}

.article-section ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.article-section li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.7;
}

.article-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.35rem 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.35rem;
}

.detail-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.7;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.88rem;
  color: rgba(225, 244, 255, 0.82);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(126, 231, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.field textarea {
  min-height: 8.6rem;
  resize: vertical;
}

.field select option {
  color: #0d2038;
}

.form-response,
.microcopy {
  font-size: 0.9rem;
}

.footer {
  padding: 2.4rem 0 3.4rem;
}

.footer-shell {
  display: grid;
  gap: 1.4rem;
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid rgba(126, 231, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(9, 27, 50, 0.9), rgba(4, 14, 28, 0.96));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 60px;
  height: 60px;
}

.footer-brand strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.footer-links h3 {
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.footer-link-list {
  display: grid;
  gap: 0.55rem;
}

.footer-link-list a {
  color: rgba(228, 244, 255, 0.84);
}

@media (max-width: 1240px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 0.9rem 0 1rem;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    padding: 1rem;
    margin-top: 0.4rem;
    border-radius: 24px;
    border: 1px solid rgba(126, 231, 255, 0.12);
    background: rgba(5, 18, 34, 0.96);
    align-items: stretch;
    gap: 0.8rem;
  }

  .site-header.is-open .nav-links {
    display: grid;
  }

  .nav-links > a,
  .service-dropdown-trigger {
    min-height: 2.7rem;
    align-items: center;
  }

  .nav-services {
    display: grid;
    gap: 0.8rem;
  }

  .service-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.75rem;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-grid,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-grid {
    min-height: 32rem;
  }

  .service-grid,
  .compact-grid,
  .blog-grid,
  .timeline,
  .area-grid,
  .spotlight-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar-shell {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .hero-photo-card-primary {
    grid-row: auto;
  }

  .hero-copy,
  .page-hero-copy,
  .hero-panel-card,
  .spotlight-card,
  .service-card,
  .process-step,
  .contact-card,
  .quote-card,
  .area-card,
  .content-panel {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .hero h1,
  .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10vw, 4rem);
  }

  .hero-points,
  .service-grid,
  .compact-grid,
  .blog-grid,
  .timeline,
  .area-grid,
  .spotlight-grid,
  .field-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2,
  .surface-banner h2 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1rem), var(--max));
  }

  .brand {
    width: min(240px, 62vw);
  }

  .tag-cloud,
  .footer-tag-list {
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .faq-answer {
    transition: none;
  }
}
