:root {
  color-scheme: light;
  --ink: #10151b;
  --ink-2: #17202a;
  --panel: #ffffff;
  --paper: #f5f7f6;
  --paper-2: #e9efed;
  --muted: #5d6973;
  --muted-2: #82909a;
  --line: #d5dddc;
  --line-dark: rgba(255, 255, 255, 0.16);
  --teal: #007a82;
  --teal-2: #00a2a8;
  --teal-soft: #d9f1f0;
  --amber: #caa24d;
  --coral: #bd5b4b;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(12, 24, 32, 0.16);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  font-size: 4rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

p {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.section-kicker,
.eyebrow,
.offer-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  width: 2.1rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 96px;
  padding: 0.7rem max(1.5rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(16, 21, 27, 0.08);
  background: rgba(245, 247, 246, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 285px;
  min-width: 250px;
}

.brand img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.1rem;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 0.7rem;
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.language-switch button {
  min-width: 42px;
  min-height: 38px;
  padding: 0.4rem 0.55rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.language-switch button + button {
  border-left: 1px solid var(--line);
}

.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--ink);
}

.language-switch button[aria-pressed="true"]:hover,
.language-switch button[aria-pressed="true"]:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 128px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 76%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  opacity: 0.13;
  filter: saturate(0.75) contrast(1.08);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 27, 0.9);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 3.75rem;
}

.hero .eyebrow {
  color: var(--teal-2);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 1.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 178px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-2);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--teal-2);
  background: rgba(0, 162, 168, 0.12);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-weight: 850;
}

.text-link::after {
  content: ">";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(780px, 100%);
  margin: 2rem 0 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  padding: 1rem 1.1rem;
}

.hero-proof div + div {
  border-left: 1px solid var(--line-dark);
}

.hero-proof dt {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 850;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 4rem;
  align-items: start;
  padding: 5.5rem 0;
}

.intro > p,
.section-heading > p,
.cloud-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services,
.stack,
.offers {
  padding: 6.5rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(16, 21, 27, 0.04);
  overflow: hidden;
}

.service-card {
  min-height: 310px;
  padding: 1.65rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-card:hover {
  background: #f9fbfb;
  transform: translateY(-2px);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 900;
}

.service-card p,
.service-card li,
.offer-card li,
.timeline-step p {
  color: var(--muted);
}

.service-card ul,
.offer-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.service-card li,
.offer-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.94rem;
}

.service-card li::before,
.offer-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--teal);
  border-radius: 2px;
  transform: rotate(45deg);
  content: "";
}

.cloud-band,
.method,
.contact {
  padding: 6.5rem 0;
}

.cloud-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.cloud-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 4rem;
  align-items: start;
}

.cloud-list {
  display: grid;
  border-top: 1px solid rgba(16, 21, 27, 0.22);
}

.cloud-list div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.cloud-list strong {
  color: var(--amber);
  font-size: 1.1rem;
}

.cloud-list span {
  color: var(--ink-2);
  font-size: 1.05rem;
  font-weight: 750;
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tech-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 800;
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(16, 21, 27, 0.04);
}

.offer-card.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.offer-card.featured .offer-label {
  color: var(--teal-2);
}

.offer-card.featured .offer-price,
.offer-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.offer-card.featured li::before {
  border-color: var(--teal-2);
}

.offer-label {
  color: var(--coral);
}

.offer-price {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-weight: 850;
}

.offer-card ul {
  flex: 1;
  margin-bottom: 1.5rem;
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.method {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.timeline-step {
  min-height: 230px;
  padding-top: 1.4rem;
  border-top: 3px solid var(--ink);
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--teal);
  font-weight: 900;
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: start;
}

.contact .section-kicker {
  color: var(--teal-2);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
}

.contact-form textarea {
  min-height: 130px;
}

.contact-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.contact-card {
  grid-column: 2;
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.contact-card img {
  width: min(260px, 100%);
  height: 92px;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  background: var(--white);
}

.contact-card dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-card dt {
  color: var(--teal-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.contact-card a {
  border-bottom: 1px solid rgba(0, 162, 168, 0.7);
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--teal-2);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1020px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    justify-content: end;
    gap: 1rem;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .intro,
  .cloud-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(1180px, calc(100% - 2rem));
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 68px;
    padding-inline: 1rem;
  }

  .brand {
    width: 184px;
    min-width: 168px;
  }

  .brand img {
    height: 50px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .language-switch button {
    min-width: 38px;
    min-height: 36px;
    padding-inline: 0.45rem;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    padding: 0.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 128px);
  }

  .hero-inner {
    padding: 3.4rem 0 3rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .hero-proof {
    display: none;
  }

  .hero-proof div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(3n),
  .service-card:nth-last-child(-n + 2),
  .service-card:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .services,
  .stack,
  .offers,
  .cloud-band,
  .method,
  .contact {
    padding: 4.5rem 0;
  }

  .intro {
    padding: 4.5rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 156px;
    min-width: 140px;
  }

  .brand img {
    height: 46px;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-proof div,
  .service-card,
  .offer-card,
  .contact-form,
  .contact-card {
    padding: 1.2rem;
  }

  .cloud-list div {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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