:root {
  --blue-950: #071a3b;
  --blue-900: #0a2557;
  --blue-700: #0a65d8;
  --blue-500: #1688ff;
  --cyan-400: #30d5ff;
  --green-500: #53d66a;
  --ink: #10213f;
  --muted: #5f6f89;
  --line: rgba(12, 50, 105, 0.12);
  --surface: rgba(255, 255, 255, 0.86);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(8, 35, 80, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(10, 101, 216, 0.08) 0 1px, transparent 1px 48px),
    radial-gradient(circle at 12% 8%, rgba(48, 213, 255, 0.24), transparent 28rem),
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 45%, #f7fbff 100%);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 40px rgba(10, 37, 87, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark,
.nav-links,
.footer-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand-mark {
  min-width: fit-content;
  color: var(--blue-950);
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  gap: 0.35rem;
  justify-content: center;
  flex: 0 1 auto;
  min-width: max-content;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue-700);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 58px;
  min-height: 42px;
  border: 1px solid rgba(10, 101, 216, 0.2);
  border-radius: 999px;
  color: var(--blue-900);
  font: inherit;
  font-weight: 800;
  background: #edf6ff;
  cursor: pointer;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: clamp(540px, 68vh, 680px);
  padding: 48px 0 64px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  color: var(--blue-950);
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 0.94;
}

h2,
.section-title {
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 0.8rem;
  color: var(--blue-950);
  font-size: 1.45rem;
}

.hero-slogan {
  margin-bottom: 1rem;
  color: var(--blue-700);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
}

.hero-description,
.about-summary,
.section-heading p,
.coming-soon p,
.service-card p,
.site-footer p,
.service-detail p,
.about-expanded p {
  color: var(--muted);
  line-height: 1.75;
}

.about-summary {
  font-size: 1rem;
}

.hero-description {
  max-width: 36rem;
  font-size: 1.12rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button,
.service-link,
.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.service-link:hover,
.detail-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  padding: 0.88rem 1.12rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-400));
  box-shadow: 0 18px 42px rgba(10, 101, 216, 0.26);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: transparent;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: cover;
}

.about,
.services,
.coming-soon {
  padding: 86px 0;
}

.about {
  padding: 0;
}

.about-card {
  display: block;
  width: 100%;
  padding: 2.25rem;
  border: 1px solid rgba(10, 101, 216, 0.18);
  border-radius: 8px;
  color: inherit;
  text-align: left;
  background:
    linear-gradient(120deg, rgba(10, 101, 216, 0.12), rgba(48, 213, 255, 0.14)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 66px rgba(8, 35, 80, 0.11);
  cursor: pointer;
}

.about-card:hover {
  border-color: rgba(10, 101, 216, 0.34);
  box-shadow: 0 28px 80px rgba(8, 35, 80, 0.15);
}

.about-card .section-kicker,
.about-card .section-title,
.about-card .about-summary,
.about-card .about-hint {
  display: block;
}

.about-hint {
  margin-top: 1rem;
  color: var(--blue-700);
  font-size: 0.95rem;
  font-weight: 900;
}

.split-content,
.section-heading,
.coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.75fr);
  gap: 3rem;
  align-items: start;
}

.about-expanded {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: 2rem;
  align-items: start;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 360ms ease, opacity 260ms ease, transform 260ms ease, padding 260ms ease;
}

.about-expanded.is-open {
  max-height: 760px;
  padding: 1.5rem 2.25rem 0;
  opacity: 1;
  transform: translateY(0);
}

.about-image {
  align-self: start;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #dff4ff;
  box-shadow: 0 16px 42px rgba(8, 35, 80, 0.12);
}

.about-image picture,
.service-detail-image picture {
  display: block;
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 68% 38%;
}

.section-heading {
  margin-bottom: 2rem;
  align-items: center;
}

.section-heading p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(8, 35, 80, 0.08);
}

.service-card-muted {
  background: rgba(255, 255, 255, 0.66);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-400));
  box-shadow: 0 10px 24px rgba(10, 101, 216, 0.22);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-available {
  color: #0f6531;
  background: rgba(83, 214, 106, 0.18);
}

.status-soon {
  color: #6a4b00;
  background: rgba(255, 196, 58, 0.2);
}

.service-card p {
  flex: 1;
}

.service-link {
  width: fit-content;
  margin-top: 1.1rem;
  padding: 0.72rem 0.9rem;
  border: 0;
  color: var(--blue-700);
  font: inherit;
  background: #edf6ff;
  cursor: pointer;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 2rem;
  align-items: start;
  margin-top: 1.35rem;
  padding: 1.5rem;
  border: 1px solid rgba(10, 101, 216, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 66px rgba(8, 35, 80, 0.12);
}

.service-detail[hidden] {
  display: none;
}

.detail-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 900;
  background: #edf6ff;
}

.service-detail small {
  display: block;
  margin-top: 1rem;
  color: var(--blue-900);
  font-weight: 800;
}

.detail-button {
  width: fit-content;
  margin-top: 1.3rem;
  padding: 0.78rem 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-400));
  box-shadow: 0 14px 34px rgba(10, 101, 216, 0.24);
}

.service-detail-image {
  align-self: start;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #e5f6ff;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 68% 40%;
}

.coming-soon {
  align-items: center;
  margin-bottom: 84px;
  padding: 2rem;
  border: 1px solid rgba(10, 101, 216, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 101, 216, 0.1), rgba(48, 213, 255, 0.12)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 56px rgba(8, 35, 80, 0.09);
}

.coming-soon p {
  margin-bottom: 0;
  align-self: center;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 2rem;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(48, 213, 255, 0.2), transparent 42%),
    var(--blue-950);
  box-shadow: 0 22px 70px rgba(8, 35, 80, 0.18);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer strong {
  color: var(--white);
  font-size: 1.3rem;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  min-height: 40px;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .service-link,
  .detail-button,
  .about-expanded {
    transition: none;
  }
}

@media (max-width: 760px) {
  .hero,
  .split-content,
  .section-heading,
  .coming-soon,
  .about-expanded,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 2rem;
    padding-top: 52px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-media {
    order: -1;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid .service-detail {
    margin-top: 0;
  }

  .about-image {
    order: -1;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .about-expanded {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  }

  .about-image img,
  .service-detail-image img {
    aspect-ratio: 3 / 4;
    object-position: 50% 48%;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.55rem;
  }

  .nav-links {
    gap: 0.1rem;
  }

  .nav-links a {
    padding-inline: 0.45rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    gap: 0.55rem;
    width: min(100% - 22px, 1180px);
    padding-inline: 8px;
  }

  .brand-mark span {
    display: none;
  }

  .nav-links {
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.08rem;
  }

  .nav-links a {
    padding-inline: 0.45rem;
  }

  .language-toggle {
    min-width: 48px;
    min-height: 38px;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .about,
  .services,
  .coming-soon {
    padding-block: 58px;
  }

  .about {
    padding-block: 0;
  }

  .about-card,
  .coming-soon,
  .service-detail {
    padding: 1.25rem;
  }

  .about-expanded.is-open {
    max-height: 900px;
    padding: 1.25rem 1.25rem 0;
  }

  .coming-soon {
    margin-bottom: 56px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
