:root {
  --bg: #f2f5f1;
  --bg-alt: #eef3f0;
  --surface: #ffffff;
  --surface-alt: #e7efeb;
  --surface-strong: #f8fbf8;
  --ink: #15211c;
  --muted: #53615b;
  --line: rgba(21, 33, 28, 0.12);
  --line-strong: rgba(21, 33, 28, 0.18);
  --teal: #0e7469;
  --teal-soft: rgba(14, 116, 105, 0.12);
  --amber: #c68a25;
  --berry: #a84e67;
  --blue: #365ab5;
  --hero-overlay: rgba(8, 17, 14, 0.54);
  --shadow: 0 24px 72px rgba(10, 20, 16, 0.12);
  --shadow-strong: 0 28px 90px rgba(10, 20, 16, 0.18);
  --max: 1180px;
  --radius: 8px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-entrance: cubic-bezier(0.18, 0.9, 0.24, 1);
  --section-pad: 104px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(14, 116, 105, 0.06), transparent 26%),
    linear-gradient(180deg, #f6f8f5 0%, var(--bg) 22%, var(--bg-alt) 100%);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

main {
  position: relative;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(242, 245, 241, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    background-color 260ms var(--ease-standard),
    border-color 260ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 116, 105, 0.36), transparent);
  opacity: 0.28;
}

.site-header.is-scrolled {
  background: rgba(248, 251, 248, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 44px rgba(7, 16, 13, 0.08);
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 180ms ease, opacity 180ms ease;
  opacity: 0;
}

.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a.is-active::after {
  background: var(--teal);
  opacity: 1;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  opacity: 0.88;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 650;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    opacity 180ms ease,
    transform 260ms var(--ease-standard),
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 260ms var(--ease-standard),
    border-color 260ms var(--ease-standard);
}

.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.22) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 560ms var(--ease-standard);
  pointer-events: none;
  z-index: -1;
}

.header-cta {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 32px rgba(9, 18, 15, 0.16);
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 18px 34px rgba(14, 116, 105, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.header-cta:hover::before,
.header-cta:focus-visible::before,
.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.hero {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(7, 15, 12, 0) 0%, rgba(7, 15, 12, 0.46) 58%, rgba(7, 15, 12, 0.72) 100%);
  z-index: 0;
  pointer-events: none;
}

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

.hero-media {
  inset: -3% -1.5%;
  background:
    linear-gradient(90deg, rgba(5, 11, 9, 0.78) 0%, rgba(5, 11, 9, 0.72) 32%, rgba(5, 11, 9, 0.42) 58%, rgba(5, 11, 9, 0.5) 100%),
    radial-gradient(circle at 18% 18%, rgba(14, 116, 105, 0.24), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(198, 138, 37, 0.16), transparent 18%),
    url("assets/company-hero-generated.png") center center / cover no-repeat,
    linear-gradient(135deg, #0d1713 0%, #14221d 42%, #183129 100%);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.035);
  will-change: transform;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  inset: -6%;
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.12), transparent 14%),
    radial-gradient(circle at 82% 68%, rgba(14, 116, 105, 0.2), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 120px 120px, 120px 120px;
  opacity: 0.22;
  transform: scale(1.02);
  animation: hero-grid-drift 20s ease-in-out infinite alternate;
}

.hero-media::after {
  inset: auto -8% -26% auto;
  width: min(44vw, 720px);
  height: min(44vw, 720px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 138, 37, 0.2), rgba(198, 138, 37, 0.06) 34%, transparent 66%);
  opacity: 0.64;
  transform: translate3d(0, 0, 0);
  animation: hero-orb-float 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(5, 11, 9, 0.12) 0%, rgba(5, 11, 9, 0.3) 100%);
}

.cta-overlay {
  background: var(--hero-overlay);
}

.hero-shell,
.cta-shell {
  position: relative;
  z-index: 1;
  padding: 124px 0 112px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 32px;
  align-items: stretch;
}

.hero-main {
  min-width: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
}

.hero-copy-wide {
  max-width: 780px;
}

.hero-meta {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
}

.company-pill {
  align-self: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  max-width: 640px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.company-pill strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.company-pill span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.45;
}

.hero-aside {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.hero-summary-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 420px);
  padding: 24px 30px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 138, 37, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 26px 70px rgba(5, 12, 9, 0.14);
  backdrop-filter: blur(14px);
}

.hero-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 52%);
  pointer-events: none;
}

.hero-summary-copy {
  margin: 0;
  max-width: none;
  font-size: 1.06rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
}

.hero-meta-card {
  margin-top: 22px;
  padding-top: 20px;
  max-width: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.service-card {
  min-height: 0;
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 320ms var(--ease-standard),
    border-color 320ms var(--ease-standard),
    background-color 320ms var(--ease-standard),
    box-shadow 320ms var(--ease-standard);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 52%);
  opacity: 0;
  transition: opacity 320ms var(--ease-standard);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 116, 105, 0), rgba(14, 116, 105, 0.72), rgba(198, 138, 37, 0.48), rgba(14, 116, 105, 0));
  opacity: 0.78;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 80px rgba(5, 12, 9, 0.18);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-card h3 {
  margin: 0;
  margin: 0 0 12px;
  font-size: 1.06rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.eyebrow {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.eyebrow::before {
  background: rgba(255, 255, 255, 0.86);
}

.section-label {
  color: var(--teal);
  background: rgba(14, 116, 105, 0.08);
  border-color: rgba(14, 116, 105, 0.14);
}

.section-label::before {
  background: var(--teal);
}

.hero h1,
.cta-section h2,
.section-head h2 {
  margin: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 820px;
  text-wrap: balance;
}

.hero h1.hero-lead-title {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(1.28rem, 2.1vw, 2.0rem);
  line-height: 1.52;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-docs {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-top: 22px;
}

.hero-docs-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

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

.button-doc {
  min-height: 50px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(5, 12, 9, 0.12);
}

.button-doc:hover,
.button-doc:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.cta-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.93);
}

.scroll-link {
  position: relative;
  display: inline-flex;
  left: 50%;
  bottom: auto;
  transform: translateX(-50%);
  margin: 26px 0 0;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section .shell {
  position: relative;
  z-index: 1;
}

.product-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.outcome::before,
.capability::before,
.stack-block::before,
.deployment-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(14, 116, 105, 0.08), transparent 48%, rgba(198, 138, 37, 0.08));
  opacity: 0;
  transition: opacity 320ms var(--ease-standard);
  pointer-events: none;
}

.outcome:hover,
.outcome:focus-within,
.capability:hover,
.capability:focus-within,
.stack-block:hover,
.stack-block:focus-within,
.deployment-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(14, 116, 105, 0.16);
}

.outcome:hover::before,
.outcome:focus-within::before,
.capability:hover::before,
.capability:focus-within::before,
.stack-block:hover::before,
.stack-block:focus-within::before,
.deployment-panel:hover::before {
  opacity: 1;
}

.section-light {
  background: var(--bg);
}

.section-accent {
  background:
    radial-gradient(circle at 12% 0%, rgba(14, 116, 105, 0.08), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(54, 90, 181, 0.08), transparent 24%),
    #edf3f7;
}

.section-dark {
  background: #15211c;
  color: #fff;
}

.section-light::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 32%);
}

.section-accent::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 28%);
}

.section-dark::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(14, 116, 105, 0.14), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(198, 138, 37, 0.1), transparent 18%);
}

.section-head {
  max-width: 820px;
  margin-bottom: 48px;
  position: relative;
}

.section-head::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, rgba(14, 116, 105, 0.86), rgba(14, 116, 105, 0.12));
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 68ch;
}

.section-head-dark p,
.section-label-light {
  color: rgba(255, 255, 255, 0.74);
}

.section-head-dark::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.12));
}

.section-label-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.section-label-light::before {
  background: rgba(255, 255, 255, 0.88);
}

.outcomes-grid,
.capability-grid,
.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.outcome,
.capability,
.stack-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 248, 0.98));
  border: 1px solid rgba(21, 33, 28, 0.08);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition:
    transform 320ms var(--ease-standard),
    box-shadow 320ms var(--ease-standard),
    border-color 320ms var(--ease-standard);
}

.section-dark .stack-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(5, 12, 9, 0.18);
}

.outcome-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 18px;
}

.outcome h3,
.capability h3,
.stack-block h3,
.deployment-panel h3,
.showcase-intro h3,
.showcase-caption h3 {
  margin: 0 0 12px;
  font-size: 1.26rem;
}

.outcome p,
.capability p,
.stack-block p,
.deployment-panel p,
.showcase-intro p,
.showcase-caption p {
  margin: 0;
  color: var(--muted);
}

.deployment-panels {
  margin-top: 26px;
}

.deployment-note {
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.94));
  border: 1px solid rgba(21, 33, 28, 0.08);
  box-shadow: var(--shadow);
}

.deployment-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.deployment-note p {
  margin: 0;
  color: var(--muted);
}

.deployment-note a {
  color: var(--teal-deep);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.deployment-contact {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.deployment-contact-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.deployment-contact-copy .section-label {
  justify-self: start;
}

.deployment-contact-copy h3 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.08;
}

.deployment-contact-copy p {
  margin: 0;
  color: var(--muted);
}

.deployment-benefits {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.deployment-benefits li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.55;
}

.deployment-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(14, 116, 105, 0.12);
}

.deployment-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 4px;
}

.deployment-direct-label {
  margin: 2px 0 -2px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}

.deployment-direct a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: none;
}

.deployment-direct a:hover,
.deployment-direct a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.deployment-panel {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 248, 0.98));
  border: 1px solid rgba(21, 33, 28, 0.08);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition:
    transform 320ms var(--ease-standard),
    box-shadow 320ms var(--ease-standard),
    border-color 320ms var(--ease-standard);
}

.deployment-panel ul,
.showcase-points,
.tech-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.deployment-panel li,
.showcase-points li,
.tech-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.deployment-panel li::before,
.showcase-points li::before,
.tech-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.showcase-layout {
  display: grid;
  gap: 28px;
}

.showcase-intro {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: center;
}

.showcase-intro > * {
  transition:
    opacity 320ms var(--ease-standard),
    transform 420ms var(--ease-standard);
}

.showcase-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.showcase-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 72px;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(9, 18, 15, 0.72);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(4, 10, 8, 0.24);
  transform: translateY(-50%);
  transition:
    transform 260ms var(--ease-standard),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 260ms var(--ease-standard);
}

.showcase-arrow:hover,
.showcase-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(14, 116, 105, 0.82);
  border-color: rgba(255, 255, 255, 0.22);
}

.showcase-arrow-prev {
  left: 0;
}

.showcase-arrow-next {
  right: 0;
}

.showcase-arrow span {
  font-size: 1.32rem;
  line-height: 1;
}

.showcase-media {
  width: min(100%, 1120px);
  min-height: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 15, 0.3);
  box-shadow: 0 26px 72px rgba(4, 10, 8, 0.22);
}

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%);
  pointer-events: none;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  padding: 18px;
  border-radius: inherit;
  transition:
    opacity 420ms var(--ease-standard),
    transform 680ms var(--ease-standard);
  will-change: transform, opacity;
}

.showcase-caption {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.showcase-caption > * {
  transition:
    opacity 320ms var(--ease-standard),
    transform 420ms var(--ease-standard);
}

.showcase-points {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.showcase-points li {
  margin-bottom: 0;
  padding: 18px 18px 18px 36px;
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.showcase-points li::before {
  left: 16px;
  top: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.architecture-principles {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 22px;
  padding: 30px;
  margin-bottom: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 248, 0.98));
  border: 1px solid rgba(21, 33, 28, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.architecture-principles-copy {
  display: grid;
  gap: 14px;
}

.architecture-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(14, 116, 105, 0.08);
  border: 1px solid rgba(14, 116, 105, 0.14);
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture-principles-copy h3,
.architecture-card h3 {
  margin: 0;
}

.architecture-principles-copy p:last-child,
.architecture-card p,
.architecture-card ul {
  margin: 0;
  color: var(--muted);
}

.architecture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.architecture-tag {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f5faf8);
  border: 1px solid rgba(21, 33, 28, 0.08);
  font-weight: 650;
  color: var(--ink);
}

.architecture-grid {
  margin-bottom: 22px;
}

.architecture-card {
  display: grid;
  gap: 14px;
}

.tech-list {
  margin-top: 10px;
}

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

.cta-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.cta-media {
  background:
    radial-gradient(circle at 16% 18%, rgba(14, 116, 105, 0.24), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(198, 138, 37, 0.18), transparent 18%),
    linear-gradient(135deg, #0b1512 0%, #10211d 45%, #153129 100%);
}

.cta-section h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.cta-section p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 30px;
  align-items: stretch;
}

.contact-form-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 72px rgba(4, 11, 8, 0.22);
  backdrop-filter: blur(12px);
}

.contact-form-title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
  color: #fff;
}

.contact-form-block-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
  border: 1px solid rgba(21, 33, 28, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.contact-form-block-light .contact-form-title {
  color: var(--ink);
}

.contact-form-block-light .section-label {
  align-self: flex-start;
}

.contact-form-block-light .contact-field span {
  color: var(--ink);
}

.contact-form-block-light .contact-field input,
.contact-form-block-light .contact-field textarea {
  border-color: rgba(21, 33, 28, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.contact-form-block-light .contact-field input::placeholder,
.contact-form-block-light .contact-field textarea::placeholder {
  color: rgba(74, 85, 81, 0.56);
}

.contact-form-block-light .contact-field input:focus,
.contact-form-block-light .contact-field textarea:focus {
  border-color: rgba(14, 116, 105, 0.34);
  background: #fff;
  box-shadow: 0 12px 28px rgba(14, 116, 105, 0.1);
}

.contact-form-block-light .contact-consent {
  color: var(--muted);
}

.contact-form-block-light .contact-consent a {
  color: var(--teal-deep);
  text-decoration-color: rgba(14, 116, 105, 0.24);
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span {
  font-size: 0.92rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.9);
}

.contact-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 260ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard);
}

.contact-field textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  resize: vertical;
  font: inherit;
  line-height: 1.55;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 260ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard);
}

.contact-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(4, 10, 8, 0.18);
}

.contact-consent {
  max-width: 620px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.contact-consent a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
}

.contact-submit {
  min-width: 180px;
  width: fit-content;
}

.contact-visual {
  min-width: 0;
}

.contact-visual-card {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 420ms var(--ease-standard),
    box-shadow 420ms var(--ease-standard);
}

.contact-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(14, 116, 105, 0.18), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(198, 138, 37, 0.16), transparent 18%);
  pointer-events: none;
}

.contact-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 88px rgba(4, 11, 8, 0.24);
}

.contact-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  background: #111a16;
  color: rgba(255, 255, 255, 0.74);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.35;
}

.site-footer p {
  margin: 0;
  max-width: 460px;
  line-height: 1.7;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-shell-company {
  align-items: flex-start;
  padding: 32px 0;
}

.footer-company-copy {
  min-width: 0;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 720ms var(--ease-entrance),
    transform 720ms var(--ease-entrance);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal.reveal-left {
  transform: translate3d(-32px, 18px, 0) scale(0.985);
}

.reveal.reveal-right {
  transform: translate3d(32px, 18px, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.showcase-intro.is-swapping > * {
  opacity: 0.22;
  transform: translateY(10px);
}

.showcase-media.is-swapping img {
  opacity: 0.28;
  transform: scale(1.04) translateY(6px);
}

.showcase-caption.is-swapping > * {
  opacity: 0.22;
  transform: translateY(10px);
}

@keyframes hero-grid-drift {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1.02);
  }

  100% {
    transform: translate3d(1.5%, -2%, 0) scale(1.06);
  }
}

@keyframes hero-orb-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-26px, 18px, 0) scale(1.08);
  }
}

@keyframes panel-appear {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  .hero-grid,
  .company-services,
  .showcase-layout,
  .deployment-contact,
  .stack-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .architecture-principles {
    grid-template-columns: 1fr;
  }

  .contact-form-block {
    padding: 30px;
  }

  .hero-main {
    max-width: 760px;
  }

  .showcase-stage {
    padding: 0 56px;
  }

  .showcase-media {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-shell,
  .footer-shell {
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .hero-shell,
  .cta-shell {
    padding: 112px 0 88px;
  }

  .company-services {
    gap: 14px;
  }

  .contact-visual-card {
    min-height: 320px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .company-pill {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .outcomes-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .architecture-principles {
    padding: 24px;
  }

  .architecture-tags {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .contact-submit {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-docs-actions {
    flex-direction: column;
  }

  .showcase-stage {
    padding: 0 8px;
  }

  .showcase-arrow {
    width: 48px;
    height: 48px;
  }

  .showcase-arrow-prev {
    left: 6px;
  }

  .showcase-arrow-next {
    right: 6px;
  }

  .showcase-media {
    min-height: 320px;
  }

  .showcase-caption {
    gap: 14px;
  }

  .showcase-points {
    grid-template-columns: 1fr;
  }

  .footer-shell-company {
    flex-direction: column;
    padding: 24px 0 28px;
  }

  .contact-form-block {
    padding: 24px;
    border-radius: 28px;
  }
}

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

  .hero-media,
  .hero-media::before,
  .hero-media::after,
  .reveal,
  .showcase-media img,
  .showcase-intro > *,
  .showcase-caption > *,
  .service-card,
  .contact-visual-card,
  .button,
  .header-cta,
  .showcase-arrow,
  .site-header,
  .contact-field input {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
