:root {
  --ink: #07172f;
  --ink-soft: #40516a;
  --blue: #0aaee0;
  --blue-dark: #0a5db7;
  --cyan: #50dcff;
  --paper: #ffffff;
  --mist: #eefaff;
  --line: rgba(7, 23, 47, 0.12);
  --shadow: 0 24px 70px rgba(7, 23, 47, 0.18);
  --radius: 28px;
  --page-gutter: clamp(22px, 6vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7fcff;
  line-height: 1.6;
}

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

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

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: var(--page-gutter);
  width: calc(100vw - (var(--page-gutter) * 2));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(7, 23, 47, 0.14);
  transition: transform 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand img {
  width: 170px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #173454;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover {
  background: rgba(10, 174, 224, 0.12);
  color: var(--blue-dark);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 170px var(--page-gutter) 90px;
  isolation: isolate;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #031b30 0%, #054c78 58%, #05aee2 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 14, 31, 0.88),
    rgba(3, 14, 31, 0.52) 52%,
    rgba(3, 14, 31, 0.24)
  );
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  will-change: transform;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(80, 220, 255, 0.16), transparent 24%),
    radial-gradient(circle at 14% 64%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #031b30 0%, #054c78 58%, #05aee2 100%);
  background-size:
    auto,
    auto,
    100% 92px,
    148px 100%,
    auto;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  background:
    linear-gradient(22deg, transparent 0 26%, rgba(80, 220, 255, 0.18) 26.2%, transparent 27%),
    linear-gradient(158deg, transparent 0 35%, rgba(80, 220, 255, 0.16) 35.2%, transparent 36%),
    linear-gradient(8deg, transparent 0 62%, rgba(255, 255, 255, 0.14) 62.1%, transparent 63%);
}

.hero-bg::after {
  background:
    radial-gradient(circle at 44% 38%, rgba(10, 174, 224, 0.75) 0 7px, transparent 8px),
    radial-gradient(circle at 50% 72%, rgba(10, 174, 224, 0.65) 0 8px, transparent 9px),
    radial-gradient(circle at 89% 42%, rgba(10, 174, 224, 0.7) 0 10px, transparent 11px),
    radial-gradient(circle at 5% 60%, rgba(255, 255, 255, 0.25) 0 7px, transparent 8px);
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #d8f8ff;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--blue-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.25rem, 9vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin-bottom: 28px;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, #ffffff, #62e3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 18px 40px rgba(10, 174, 224, 0.3);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card {
  position: absolute;
  right: var(--page-gutter);
  bottom: 76px;
  max-width: 360px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  color: white;
}

.hero-card strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.78);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  opacity: 0.55;
  z-index: 1;
}

.orb-one {
  width: 320px;
  height: 320px;
  right: 8%;
  top: 18%;
  background: rgba(80, 220, 255, 0.22);
}

.orb-two {
  width: 180px;
  height: 180px;
  left: 8%;
  bottom: 16%;
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: clamp(80px, 10vw, 140px) var(--page-gutter);
}

.intro {
  background: white;
}

.section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 24px;
}

.two-column,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

.section p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.vision,
.approach {
  background: linear-gradient(180deg, #f7fcff, #edf9ff);
}

.image-frame {
  padding: 12px;
  border: 1px solid rgba(10, 174, 224, 0.18);
  border-radius: calc(var(--radius) + 12px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  will-change: transform;
}

.image-frame img {
  border-radius: var(--radius);
}

.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 46px;
}

.services {
  background: white;
}

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

.service-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f1fbff);
  box-shadow: 0 18px 55px rgba(7, 23, 47, 0.08);
}

.service-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  margin-bottom: 40px;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.contact {
  background: #061a33;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 40px;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.contact-details p {
  padding: 18px;
  border-radius: 20px;
  background: #f3fbff;
  margin: 0;
  font-size: 0.96rem;
}

.contact-details a {
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-illustration {
  border-radius: 24px;
  margin-top: 18px;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 32px;
  background: #f4fbff;
  border: 1px solid rgba(10, 174, 224, 0.18);
}

.contact-form label {
  font-weight: 800;
  color: #183653;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 23, 47, 0.16);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  background: white;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 174, 224, 0.15);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.86rem !important;
  margin: 2px 0 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.form-alert.success {
  background: #e7fff4;
  color: #0a6a42;
}

.form-alert.error {
  background: #fff0f0;
  color: #9b1c1c;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--page-gutter);
  background: #041225;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 146px;
  filter: brightness(1.1);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 42px;
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 16px;
  }

  .site-header {
    top: 14px;
    left: var(--page-gutter);
    width: calc(100vw - (var(--page-gutter) * 2));
    border-radius: 26px;
    align-items: flex-start;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #07172f;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    padding-top: 150px;
  }

  .two-column,
  .content-grid,
  .reverse,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .contact-details {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 20px;
  }

  html,
  body {
    background: #031b30;
    overflow-x: hidden;
  }

  .site-header {
    position: absolute;
    top: 24px;
    left: 18px;
    width: calc(100% - 36px);
    padding: 12px 14px;
    border-radius: 28px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
    gap: 12px;
  }

  .brand img {
    width: 175px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #07172f;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .site-nav {
    top: 72px;
    left: 0;
    right: 0;
    border-radius: 24px;
  }

  .hero {
    min-height: auto;
    padding: 170px 24px 80px;
    background:
      radial-gradient(circle at 70% 18%, rgba(80, 220, 255, 0.18), transparent 34%),
      linear-gradient(160deg, #031b30 0%, #063b63 58%, #075f85 100%);
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(3, 14, 31, 0.26),
      rgba(3, 14, 31, 0.38) 48%,
      rgba(3, 14, 31, 0.62)
    );
  }

  .hero-bg {
    transform: none !important;
    background:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 88px, 96px 100%;
    opacity: 0.65;
  }

  .hero-bg::before,
  .hero-bg::after,
  .orb {
    display: none;
  }

  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    line-height: 1.4;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
  }

  .hero-copy {
    font-size: 1.45rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .button {
    width: auto;
    min-width: 320px;
    min-height: 64px;
    font-size: 1.15rem;
    padding: 18px 28px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 68px;
    max-width: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
  }

  .section {
    padding: 72px 20px;
  }

  .image-frame {
    background: #ffffff;
  }

  .image-frame img {
    filter: saturate(0.9);
  }

  .contact-card {
    border-radius: 28px;
  }

  .contact-form {
    border-radius: 24px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 155px;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .button {
    min-width: 100%;
  }

  .hero-copy {
    font-size: 1.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .parallax-layer {
    transform: none !important;
  }
}
@media (max-width: 560px) {
.contact {
padding-left: 0;
padding-right: 0;
background: #061a33;
overflow: hidden;
}

.contact-card {
display: block;
width: calc(100vw - 32px);
max-width: calc(100vw - 32px);
margin: 0 auto;
padding: 24px 16px;
border-radius: 28px;
overflow: hidden;
box-sizing: border-box;
}

.contact-copy,
.contact-details,
.contact-details p,
.contact-illustration,
.contact-form {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-details {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}

.contact-details p {
padding: 18px;
margin: 0;
border-radius: 20px;
overflow-wrap: break-word;
word-break: normal;
}

.contact-illustration {
display: block;
height: auto;
margin: 24px 0 0;
border-radius: 22px;
}

.contact-form {
margin-top: 28px;
padding: 22px 16px;
border-radius: 24px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
}
@media (max-width: 560px) {
.site-header {
position: fixed;
top: 14px;
left: 18px;
right: auto;
width: calc(100vw - 36px);
max-width: calc(100vw - 36px);
z-index: 9999;
}

.contact-card {
width: calc(100vw - 48px);
max-width: calc(100vw - 48px);
padding: 22px 14px;
}

.contact-form {
width: 100%;
max-width: 100%;
padding: 22px 14px;
overflow: hidden;
}

.contact-form input,
.contact-form textarea {
width: 100%;
max-width: 100%;
display: block;
}

.contact-form .button {
width: 100%;
min-width: 0;
}
}
.section,
.service-card,
.hero-card,
.contact-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.section.is-visible,
.service-card.is-visible,
.hero-card.is-visible,
.contact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  opacity: 1;
  transform: none;
}

.service-card:nth-child(2) {
  transition-delay: 0.12s;
}

.service-card:nth-child(3) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .section,
  .service-card,
  .hero-card,
  .contact-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}