:root {
  --bg: #f7fbfc;
  --ink: #081626;
  --text: #122236;
  --muted: #667789;
  --line: #d8e4ea;
  --line-strong: #b7cbd4;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --teal: #0f6e7a;
  --teal-soft: #9ccdd3;
  --gold: #d7a34d;
  --gold-soft: #f3ddb2;
  --shadow: 0 34px 95px rgba(13, 35, 52, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 70% 36% at 62% 0%, rgba(156, 205, 211, 0.26), transparent 66%),
    radial-gradient(ellipse 42% 30% at 6% 16%, rgba(215, 163, 77, 0.15), transparent 68%),
    linear-gradient(180deg, #fbfdfe 0%, var(--bg) 48%, #edf5f7 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(8, 22, 38, 0.055) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(8, 22, 38, 0.035) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(180deg, black, transparent 84%);
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-solid);
  padding: 10px 14px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 22px 56px 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(183, 203, 212, 0.7);
  background: rgba(247, 251, 252, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1560px;
  height: 74px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 850;
  color: var(--ink);
}

.brand-mark {
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, var(--teal) 0 53%, var(--gold) 53% 100%);
  mask: url("/images/logo-white.png") center / contain no-repeat;
  -webkit-mask: url("/images/logo-white.png") center / contain no-repeat;
}

.brand-name {
  font-size: 20px;
  line-height: 1;
}

.brand-name span {
  color: var(--teal);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(18, 34, 54, 0.62);
  font-size: 14px;
  font-weight: 780;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
  outline: none;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.nav-icon,
.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  box-shadow: 0 12px 32px rgba(13, 35, 52, 0.06);
}

.nav-icon svg {
  width: 18px;
  height: 18px;
}

.nav-cta,
.primary-button,
.hero-card a,
.scope-console a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(8, 22, 38, 0.08);
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 830;
  box-shadow: 0 20px 38px rgba(8, 22, 38, 0.17);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.primary-button:hover,
.hero-card a:hover,
.scope-console a:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 48px rgba(8, 22, 38, 0.22);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: calc(100% - 32px);
  max-width: 1560px;
  margin: 8px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--muted);
  font-weight: 780;
}

.mobile-nav a:hover {
  background: rgba(15, 110, 122, 0.08);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 116px 56px 68px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 0.38fr 0.38fr 0.24fr;
  align-items: stretch;
  width: 100%;
  max-width: 1560px;
  min-height: 640px;
  margin: 0 auto;
  gap: 28px;
}

.hero-copy,
.hero-stage,
.hero-card,
.scope-console,
.packages,
.workflow,
.services,
.contact,
.footer-inner {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 38px 0 30px;
}

.eyebrow,
.mini-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 72px;
  color: var(--ink);
  font-size: 41px;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.circle-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  color: var(--teal);
  font-size: 28px;
  line-height: 1;
}

.dots {
  display: inline-flex;
  gap: 8px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.dots i:first-child {
  width: 26px;
  border-radius: 999px;
  background: var(--gold);
}

.control-note {
  margin-left: auto;
  max-width: 210px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #dfeaed;
  box-shadow: var(--shadow);
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 251, 252, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(247, 251, 252, 0.04), rgba(247, 251, 252, 0.34));
}

.hero-stage img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(0.94) brightness(1.22);
}

.hero-stage figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 56px rgba(8, 22, 38, 0.18);
  backdrop-filter: blur(14px);
}

.hero-stage figcaption span {
  display: block;
  border-left: 1px solid rgba(183, 203, 212, 0.75);
  padding: 18px 20px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.hero-stage figcaption span:first-child {
  border-left: 0;
}

.hero-stage small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

.hero-card h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.07;
  font-weight: 900;
}

.hero-card dl {
  margin: auto 0 20px;
}

.hero-card div {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.hero-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 820;
}

.scope-console {
  position: relative;
  width: 100%;
  max-width: 1480px;
  margin: -18px auto 0;
  border: 1px solid rgba(183, 203, 212, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9), rgba(234, 244, 247, 0.92)),
    linear-gradient(90deg, rgba(215, 163, 77, 0.12), transparent 30%, rgba(156, 205, 211, 0.2));
  padding: 42px 48px;
  box-shadow: var(--shadow);
}

.scope-console h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.04;
  text-align: center;
}

.console-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  width: min(950px, 100%);
  margin: 0 auto;
}

.console-row span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
  color: var(--muted);
  font-weight: 760;
}

.console-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}

.packages,
.workflow,
.services,
.contact {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 86px 56px;
}

.wide-grid {
  display: grid;
  grid-template-columns: 0.56fr 0.44fr;
  gap: 56px;
  border-top: 1px solid var(--line);
  padding-top: 42px;
}

.wide-grid h2,
.workflow h2,
.services h2,
.contact h2 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1.06;
  font-weight: 900;
}

.wide-grid p,
.workflow-copy p,
.services header,
.contact div:first-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.74;
}

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

.package-grid article {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 26px;
  box-shadow: 0 20px 60px rgba(13, 35, 52, 0.07);
}

.package-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(15, 110, 122, 0.1);
  color: var(--teal);
  font-weight: 900;
}

.package-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.12;
}

.package-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.workflow {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 54px;
  background:
    linear-gradient(180deg, rgba(247, 251, 252, 0), rgba(236, 246, 248, 0.86)),
    radial-gradient(ellipse 42% 32% at 84% 8%, rgba(15, 110, 122, 0.13), transparent 72%);
}

.workflow-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

.workflow-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 18px;
  box-shadow: var(--shadow);
}

.step {
  display: grid;
  grid-template-columns: 0.24fr 1fr;
  gap: 18px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  color: var(--text);
  text-align: left;
}

.step span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.step strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.step.is-active {
  border-color: rgba(215, 163, 77, 0.48);
  background: rgba(255, 250, 238, 0.9);
}

.services header {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 42px;
  border-top: 1px solid var(--line);
  padding-top: 42px;
}

.service-stack {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.service-stack article {
  display: grid;
  grid-template-columns: 0.64fr 0.36fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(13, 35, 52, 0.08);
}

.service-stack div {
  padding: 38px;
}

.service-stack p {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-stack h3 {
  max-width: 790px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.12;
}

.service-stack img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.08);
}

.contact {
  display: grid;
  grid-template-columns: 0.62fr 0.38fr;
  gap: 48px;
  align-items: center;
}

.contact-box {
  display: grid;
  gap: 12px;
}

.contact-box a:not(.primary-button) {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.contact-box span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-box strong {
  color: var(--ink);
  font-size: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 30px 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  gap: 28px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .nav-icon,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .hero-shell,
  .workflow,
  .contact,
  .wide-grid,
  .services header {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: none;
  }

  .hero-controls {
    margin-top: 28px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 10px 10px 0;
  }

  .nav-wrap {
    height: 62px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 10px;
    box-shadow: 0 18px 44px rgba(13, 35, 52, 0.09);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero,
  .packages,
  .workflow,
  .services,
  .contact {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 94px;
  }

  .hero-shell {
    min-height: 0;
    gap: 16px;
  }

  .hero-copy {
    border-top: 0;
    padding-top: 14px;
  }

  h1 {
    margin-bottom: 26px;
    font-size: 38px;
  }

  .lead {
    font-size: 16px;
  }

  .control-note {
    display: none;
  }

  .hero-stage img {
    min-height: 360px;
  }

  .hero-stage figcaption {
    grid-template-columns: 1fr;
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-stage figcaption span {
    border-top: 1px solid rgba(183, 203, 212, 0.75);
    border-left: 0;
    padding: 12px 14px;
  }

  .hero-stage figcaption span:first-child {
    border-top: 0;
  }

  .hero-card h2,
  .wide-grid h2,
  .workflow h2,
  .services h2,
  .contact h2 {
    font-size: 30px;
  }

  .scope-console {
    margin-top: 16px;
    padding: 28px 18px;
  }

  .scope-console h2 {
    font-size: 34px;
  }

  .console-row,
  .package-grid,
  .service-stack article,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .package-grid article {
    min-height: auto;
  }

  .package-grid span {
    margin-bottom: 24px;
  }

  .workflow-copy {
    position: static;
  }

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

  .service-stack div {
    padding: 24px;
  }

  .service-stack h3 {
    font-size: 25px;
  }

  .site-footer {
    padding: 28px 16px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }

  .primary-button,
  .scope-console a {
    width: 100%;
  }

  .hero-controls {
    gap: 10px;
  }

  .circle-button {
    width: 42px;
    height: 42px;
  }

  .contact-box strong {
    font-size: 17px;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
