:root {
  --ink: #06131d;
  --navy: #081a27;
  --navy-2: #0d2536;
  --panel: #102d42;
  --panel-2: #143a53;
  --line: rgba(144, 194, 222, 0.22);
  --text: #f3f9ff;
  --muted: #aac0d0;
  --cyan: #24c8ff;
  --amber: #ffb35c;
  --green: #49e49b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(8, 26, 39, 0.8), var(--ink) 560px),
    linear-gradient(115deg, rgba(36, 200, 255, 0.12), transparent 38%),
    var(--ink);
}

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

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(6, 19, 29, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 218px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 34px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
}

.desktop-nav a,
.header-action,
.button,
.text-link,
.package-grid a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(243, 249, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.language-toggle button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-right: 1px solid rgba(243, 249, 255, 0.14);
  color: var(--muted);
  background: rgba(243, 249, 255, 0.04);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-toggle button:last-child {
  border-right: 0;
}

.language-toggle button[aria-pressed="true"] {
  color: #031722;
  background: var(--cyan);
}

.header-action {
  border: 1px solid rgba(36, 200, 255, 0.45);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-action:hover {
  background: rgba(36, 200, 255, 0.08);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  padding: 72px 0 66px;
}

.hero-copy h1,
.hero-copy h2,
.section-intro h2,
.proof-copy h2,
.status-section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.88;
  font-weight: 820;
}

.hero-copy h2 {
  max-width: 720px;
  margin-top: 18px;
  color: #dff3ff;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.02;
  font-weight: 720;
}

.hero-copy p,
.section-intro p,
.proof-copy p,
.status-section > div > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button:hover,
.package-grid a:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #031722;
  background: linear-gradient(135deg, var(--cyan), #82d8ff 48%, var(--amber));
}

.button.secondary {
  border: 1px solid rgba(243, 249, 255, 0.24);
  color: var(--text);
  background: rgba(243, 249, 255, 0.04);
}

.studio-console {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 58, 83, 0.92), rgba(7, 22, 34, 0.98));
  box-shadow: var(--shadow);
}

.console-frame {
  padding: 18px;
}

.console-frame img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(144, 194, 222, 0.22);
  border-radius: 6px;
}

.console-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.console-bottom div {
  padding: 22px;
  background: rgba(8, 26, 39, 0.78);
}

.console-bottom strong {
  display: block;
  font-size: 16px;
}

.console-bottom span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.overview-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 45, 66, 0.52);
}

.overview-band div {
  min-height: 152px;
  padding: 34px clamp(20px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.overview-band div:last-child {
  border-right: 0;
}

.overview-band strong {
  display: block;
  color: var(--text);
  font-size: 20px;
}

.overview-band span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.company-section,
.team-page-section,
.proof-section,
.package-section,
.status-section {
  padding: 104px 0;
}

.section-intro h2,
.proof-copy h2,
.status-section h2 {
  max-width: 780px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 790;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.pillar-grid article,
.impact-list article,
.status-columns article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 45, 66, 0.46);
}

.pillar-grid article {
  min-height: 270px;
  padding: 28px;
}

.pillar-grid span,
.workflow-rail span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
}

.pillar-grid h3,
.status-columns h3 {
  margin: 24px 0 0;
  font-size: 24px;
}

.pillar-grid p,
.impact-list p,
.workflow-rail p,
.status-columns li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.pipeline-section,
.team-teaser-section,
.impact-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a1f2f;
}

.pipeline-layout,
.team-teaser-layout,
.impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: start;
  padding: 104px 0;
}

.team-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-snapshot article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(8, 26, 39, 0.72);
}

.team-snapshot strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.team-snapshot span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.page-hero {
  padding: 86px 0 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.profile-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.profile-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: rgba(16, 45, 66, 0.46);
}

.profile-photo {
  overflow: hidden;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(36, 200, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(36, 200, 255, 0.18), rgba(255, 179, 92, 0.16)),
    rgba(8, 26, 39, 0.9);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo span {
  color: #dff3ff;
  font-size: 44px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.profile-body .role {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-body h3 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.profile-body > p:not(.role) {
  max-width: 880px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.profile-body h4 {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.profile-body li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.employee-band {
  border-top: 1px solid var(--line);
  background: #0a1f2f;
}

.employee-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 46px;
  align-items: start;
  padding: 104px 0;
}

.employee-panel {
  display: grid;
  gap: 18px;
}

.current-employee,
.hiring-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 45, 66, 0.46);
}

.current-employee {
  padding: 26px;
}

.current-employee span,
.hiring-grid span {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.current-employee h3 {
  margin: 12px 0 0;
  font-size: 34px;
}

.current-employee p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hiring-grid article {
  min-height: 174px;
  padding: 22px;
}

.hiring-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.hiring-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.workflow-rail {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.workflow-rail div {
  display: grid;
  grid-template-columns: 64px 150px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 23px 24px;
  background: rgba(8, 26, 39, 0.78);
}

.workflow-rail strong {
  font-size: 20px;
}

.workflow-rail p {
  margin: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.proof-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 34px 0 26px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-facts div {
  padding: 22px;
  background: rgba(16, 45, 66, 0.5);
}

.proof-facts dt {
  color: var(--text);
  font-size: 40px;
  font-weight: 820;
  line-height: 1;
}

.proof-facts dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.text-link {
  color: var(--cyan);
  font-weight: 800;
}

.text-link:hover {
  color: var(--amber);
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.proof-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 45, 66, 0.5);
}

.proof-gallery figure:nth-child(3) {
  grid-column: span 2;
}

.proof-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top center;
}

.proof-gallery figure:nth-child(3) img {
  height: 310px;
}

.proof-gallery figcaption {
  min-height: 64px;
  padding: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.impact-list article {
  min-height: 176px;
  padding: 24px;
}

.impact-list strong {
  display: block;
  font-size: 18px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.package-grid a {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(16, 45, 66, 0.46);
}

.package-grid a:hover {
  border-color: rgba(36, 200, 255, 0.55);
  background: rgba(20, 58, 83, 0.68);
}

.package-grid strong {
  display: block;
  font-size: 21px;
}

.package-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.status-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 44px;
  border-top: 1px solid var(--line);
}

.status-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.status-columns article {
  padding: 24px;
}

.status-columns h3 {
  margin-top: 0;
  font-size: 20px;
}

.status-columns ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.status-columns li + li {
  margin-top: 10px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .pipeline-layout,
  .team-teaser-layout,
  .proof-section,
  .impact-layout,
  .status-section,
  .employee-layout {
    grid-template-columns: 1fr;
  }

  .overview-band,
  .pillar-grid,
  .team-snapshot,
  .package-grid,
  .status-columns,
  .profile-body ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .header-action {
    padding: 9px 12px;
  }

  .header-tools {
    gap: 8px;
  }

  .language-toggle button {
    min-width: 34px;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 52px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-copy h2 {
    font-size: 34px;
  }

  .hero-copy p,
  .section-intro p,
  .proof-copy p,
  .status-section > div > p {
    font-size: 16px;
  }

  .console-frame img {
    height: 280px;
  }

  .console-bottom,
  .overview-band,
  .pillar-grid,
  .team-snapshot,
  .workflow-rail div,
  .proof-facts,
  .proof-gallery,
  .impact-list,
  .package-grid,
  .status-columns,
  .profile-card,
  .profile-body ul,
  .hiring-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 54px 0 44px;
  }

  .profile-photo {
    max-width: 180px;
  }

  .overview-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .overview-band div:last-child {
    border-bottom: 0;
  }

  .workflow-rail div {
    gap: 10px;
  }

  .proof-gallery figure:nth-child(3) {
    grid-column: auto;
  }

  .proof-gallery img,
  .proof-gallery figure:nth-child(3) img {
    height: 260px;
  }

  footer {
    flex-direction: column;
  }
}
