* {
  box-sizing: border-box;
}

:root {
  --bg: #030b18;
  --panel: rgba(17, 34, 63, 0.72);
  --border: rgba(120, 163, 227, 0.16);
  --text: #eef4ff;
  --muted: rgba(226, 234, 249, 0.78);
  --eyebrow: #74d6ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 30px;
  --container: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 84px;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 154, 255, 0.2), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(38, 92, 214, 0.18), transparent 24%),
    linear-gradient(180deg, #020814 0%, #031124 48%, #04101e 100%);
}

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(3, 18, 34, 0.85);
  border-bottom: 1px solid rgba(120, 163, 227, 0.1);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #88e6ff;
  border: 1px solid rgba(116, 214, 255, 0.28);
  background: linear-gradient(180deg, rgba(15, 50, 78, 0.85), rgba(9, 25, 45, 0.92));
  box-shadow: inset 0 1px 0 rgba(159, 221, 255, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.7rem;
  letter-spacing: -0.045em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: rgba(238, 244, 255, 0.84);
  font-size: 0.98rem;
}

.site-nav a:hover,
.inline-link:hover {
  color: #fff;
}

section {
  padding: 110px 0;
}

.hero-section {
  padding-top: 78px;
  padding-bottom: 82px;
}

.hero-grid,
.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(540px, 0.95fr);
  gap: 68px;
  align-items: center;
}

.section-eyebrow {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1rem;
  color: var(--eyebrow);
}

.hero-copy h1,
.support-copy h2,
.contact-intro h2,
.section-heading h2,
.text-panel h3 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  max-width: 780px;
}

.hero-text {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-media-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: rgba(6, 14, 28, 0.72);
  box-shadow: var(--shadow);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 20, 0.16), rgba(3, 10, 20, 0.22)),
    linear-gradient(90deg, rgba(3, 10, 20, 0.16), rgba(3, 10, 20, 0.02) 45%, rgba(3, 10, 20, 0.18));
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading--compact p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.section-heading h2,
.support-copy h2,
.contact-intro h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

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

.service-card,
.contact-card,
.support-cards,
.contact-intro,
.text-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14, 28, 52, 0.82), rgba(8, 20, 40, 0.84));
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #081224;
}

.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.carousel img {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.carousel img.is-active {
  opacity: 1;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 21, 0.05) 0%, rgba(4, 11, 21, 0.58) 100%);
  pointer-events: none;
}

.service-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: #9fe8ff;
}

.service-body {
  padding: 26px 24px 28px;
}

.service-body p,
.support-card p,
.support-card h3,
.contact-point p,
.contact-point h3,
.contact-card h3,
.contact-intro p,
.form-status,
.text-panel p {
  margin: 0;
}

.service-body p,
.text-panel p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.support-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.support-copy {
  padding-right: 18px;
}

.support-intro {
  margin-top: 24px !important;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 560px;
}

.support-cards {
  padding: 18px;
}

.support-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
}

.support-card + .support-card {
  border-top: 1px solid rgba(120, 163, 227, 0.12);
}

.support-number {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: #dcecff;
  background: linear-gradient(180deg, rgba(54, 82, 128, 0.85), rgba(44, 66, 104, 0.9));
}

.support-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.support-card p,
.contact-intro > p,
.contact-point p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-intro,
.contact-card,
.text-panel {
  padding: 42px;
}

.contact-intro > p {
  margin-top: 24px !important;
  font-size: 1rem;
  max-width: 580px;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-point {
  padding-top: 18px;
  border-top: 1px solid rgba(120, 163, 227, 0.12);
}

.no-top-gap {
  margin-top: 0;
}

.no-top-border {
  border-top: 0;
  padding-top: 0;
}

.contact-point h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin-bottom: 26px;
}

.contact-form {
  display: grid;
  gap: 0;
}

.form-group {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-form span {
  color: rgba(220, 232, 249, 0.75);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(122, 161, 224, 0.16);
  border-radius: 18px;
  background: rgba(2, 10, 22, 0.88);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(223, 233, 246, 0.34);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(116, 214, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(116, 214, 255, 0.12);
}

.submit-button,
.solid-link-button,
.ghost-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 16px 22px;
  font: inherit;
  font-weight: 600;
}

.submit-button,
.solid-link-button {
  margin-top: 10px;
  border: 0;
  color: #08111f;
  background: linear-gradient(180deg, #8fe8ff 0%, #5cd0f6 100%);
  cursor: pointer;
}

.ghost-link-button {
  border: 1px solid rgba(122, 161, 224, 0.2);
  color: var(--text);
  background: rgba(8, 20, 40, 0.52);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.inline-link {
  color: #9fe8ff;
}

.form-status {
  min-height: 1.5em;
  color: #9fe8ff;
  font-size: 0.95rem;
}

.landing-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.text-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.text-panel p + p {
  margin-top: 16px;
}

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

  .hero-grid,
  .landing-hero-grid {
    gap: 36px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .support-copy {
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  body {
    padding-top: 108px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 64px;
    flex-wrap: wrap;
    padding: 6px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
  }

  section {
    padding: 70px 0;
  }

  .hero-section {
    padding-top: 44px;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.75;
  }

  .support-copy h2,
  .contact-intro h2,
  .section-heading h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .support-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    padding: 16px 12px;
  }

  .support-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.2rem;
  }

  .contact-intro,
  .contact-card,
  .text-panel {
    padding: 28px 22px;
  }

  .landing-actions {
    flex-direction: column;
  }
}
