:root {
  --navy: #000089;
  --teal: #00c8be;
  --ink: #111827;
  --muted: #667085;
  --line: #e4e7ec;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --dark: #060622;
  --shadow: 0 24px 80px rgba(0, 0, 80, 0.16);
  --radius: 8px;
  --font-family: "Adobe Clean", "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-family);
  line-height: 1.5;
}

body::selection {
  color: white;
  background: var(--navy);
}

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

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

.material-symbols-rounded {
  direction: ltr;
  display: inline-block;
  font-family: "Material Symbols Rounded";
  font-feature-settings: "liga";
  font-size: 36px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 70, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(136px, 15vw, 190px);
}

.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header[data-elevated="true"] .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.93rem;
  font-weight: 650;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--teal);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: 88px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header[data-elevated="true"] .language-switch {
  border-color: var(--line);
  background: var(--soft);
}

.lang-button,
.icon-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.lang-button {
  height: 30px;
  border-radius: 999px;
  color: currentColor;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.lang-button.is-active {
  color: var(--navy);
  background: white;
}

.site-header[data-elevated="true"] .lang-button.is-active {
  color: white;
  background: var(--navy);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--teal);
}

.icon-button .material-symbols-rounded {
  font-size: 1.25rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  color: white;
  background: var(--dark);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 40, 0.92) 0%, rgba(0, 0, 80, 0.76) 34%, rgba(0, 0, 0, 0.08) 62%),
    linear-gradient(0deg, rgba(0, 0, 45, 0.44) 0%, rgba(0, 0, 0, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 0 clamp(66px, 12vh, 130px) clamp(20px, 7vw, 96px);
}

.hero-kicker,
.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-kicker span:last-child {
  line-height: 1.45;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(0, 200, 190, 0.18);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 10px;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-specialty {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.55rem, 3.1vw, 2.95rem);
  font-weight: 780;
  line-height: 1.08;
}

.hero-subtitle {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

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

.hero-actions .material-symbols-rounded {
  font-size: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--teal);
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
}

.section {
  padding: clamp(72px, 11vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.eyebrow {
  margin-bottom: 12px;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.company-section,
.news-section {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 60px rgba(0, 0, 80, 0.06);
}

.service-icon,
.news-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(0, 200, 190, 0.18);
}

.service-card h3,
.news-panel h3 {
  color: var(--navy);
  font-size: 1.26rem;
  line-height: 1.18;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.service-card li {
  position: relative;
  padding-left: 22px;
}

.service-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.founder-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.founder-copy > p:not(.eyebrow):not(.founder-note) {
  color: var(--muted);
  font-size: 1.04rem;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.focus-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.focus-list .material-symbols-rounded {
  color: var(--teal);
}

.focus-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

.founder-note {
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  color: var(--navy);
  background: rgba(0, 200, 190, 0.08);
  font-weight: 750;
}

.founder-profile {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.scroll-reveal {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.founder-profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 77% center;
}

.profile-caption {
  display: grid;
  gap: 2px;
  padding: 18px 20px 20px;
  color: white;
}

.profile-caption strong {
  font-size: 1.15rem;
}

.profile-caption span {
  color: rgba(255, 255, 255, 0.72);
}

.news-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 60px rgba(0, 0, 80, 0.06);
}

.news-list {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.news-list .news-panel {
  max-width: none;
  margin: 0;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 60px rgba(0, 0, 80, 0.06);
}

.news-card-media img,
.news-card-media video {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  background: var(--dark);
}

.news-card-body {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.news-card-date {
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.14;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  white-space: pre-line;
}

.news-card-link {
  justify-self: start;
  color: var(--navy);
  font-weight: 850;
}

.news-card-link:hover {
  color: var(--teal);
}

.news-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 200, 190, 0.18), transparent 32%),
    linear-gradient(135deg, #000045 0%, var(--navy) 100%);
}

.contact-section h2,
.contact-section .section-lead {
  color: white;
}

.contact-section .section-lead {
  max-width: 640px;
  opacity: 0.78;
}

.contact-tagline {
  color: var(--teal);
  font-size: 1.14rem;
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-card > img {
  width: 154px;
  filter: brightness(0) invert(1);
}

.contact-person {
  display: grid;
  gap: 2px;
  margin-bottom: 8px;
}

.contact-person strong {
  font-size: 1.32rem;
}

.contact-person span,
.contact-card address {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card a,
.contact-card address {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  font-style: normal;
}

.contact-card .material-symbols-rounded {
  color: var(--teal);
}

.linkedin-link {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.75);
  background: #03031a;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .service-grid,
  .founder-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .founder-profile {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    width: 132px;
  }

  .icon-button {
    display: none;
  }

  .language-switch {
    min-width: 78px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media img {
    object-position: left center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 45, 0.94) 0%, rgba(0, 0, 80, 0.82) 46%, rgba(0, 0, 0, 0.12) 82%),
      linear-gradient(0deg, rgba(0, 0, 45, 0.5) 0%, rgba(0, 0, 0, 0) 56%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.6rem);
  }

  .hero-specialty {
    font-size: clamp(1.35rem, 7vw, 2.15rem);
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 16px;
  }

  .section-heading {
    text-align: left;
  }

  .service-card,
  .news-panel,
  .contact-card {
    padding: 22px;
  }

  .focus-list,
  .news-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
