:root {
  color-scheme: light;
  --page-bg: #f5f5f7;
  --surface: #ffffff;
  --surface-secondary: #f0f2f5;
  --surface-elevated: rgba(255, 255, 255, 0.78);
  --text-primary: #101114;
  --text-secondary: #626873;
  --text-muted: #626873;
  --border: rgba(16, 17, 20, 0.1);
  --border-strong: rgba(16, 17, 20, 0.16);
  --button-primary-bg: #101114;
  --button-primary-text: #ffffff;
  --button-secondary-bg: rgba(255, 255, 255, 0.72);
  --button-secondary-text: #101114;
  --accent: #8b611f;
  --accent-on-dark: #f2bd5e;
  --nav-surface: rgba(245, 245, 247, 0.82);
  --nav-surface-strong: rgba(245, 245, 247, 0.96);
  --hero-overlay:
    linear-gradient(90deg, rgba(5, 7, 10, 0.9) 0%, rgba(5, 7, 10, 0.66) 34%, rgba(5, 7, 10, 0.28) 62%, rgba(5, 7, 10, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.42) 0%, rgba(5, 7, 10, 0.1) 46%, rgba(5, 7, 10, 0.92) 100%);
  --hero-overlay-mobile:
    linear-gradient(90deg, rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0.6)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.18), rgba(5, 7, 10, 0.96));
  --ink: var(--text-primary);
  --ink-muted: var(--text-secondary);
  --ink-soft: var(--text-muted);
  --paper: var(--page-bg);
  --surface-soft: var(--surface-secondary);
  --line: var(--border);
  --line-strong: var(--border-strong);
  --charcoal: #080a0d;
  --charcoal-2: #11151b;
  --steel: #d8dde5;
  --amber: #d7a553;
  --amber-strong: #f2bd5e;
  --teal: #7fd6c2;
  --green: #57c785;
  --shadow-soft: 0 24px 70px rgba(16, 17, 20, 0.14);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-card: 8px;
  --max-width: 1180px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #ffffff;
  background: #000000;
  border-radius: 8px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  color: #ffffff;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: var(--nav-surface);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1240px);
  height: 100%;
  margin: 0 auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 43px;
  max-width: 214px;
  object-fit: contain;
}

.site-footer .brand-logo {
  height: 38px;
  max-width: 188px;
  filter: invert(1) brightness(1.8);
}

.site-header:not(.is-scrolled):not(.is-open) .brand-logo {
  filter: invert(1) brightness(1.8);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-login {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: currentColor;
  opacity: 0.82;
  transition: opacity 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-login:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-login:hover,
.site-header.is-open .nav-links a:hover,
.site-header.is-open .nav-login:hover {
  background: rgba(16, 17, 20, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.nav-links a:focus-visible,
.nav-login:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(127, 214, 194, 0.55);
  outline-offset: 3px;
}

.button-primary {
  color: #080a0d;
  background: #ffffff;
  box-shadow: 0 11px 27px rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .button-primary,
.site-header.is-open .button-primary,
.final-cta .button-primary {
  color: var(--button-primary-text);
  background: var(--button-primary-bg);
  box-shadow: 0 14px 29px rgba(16, 17, 20, 0.15);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .button-primary:hover,
.site-header.is-open .button-primary:hover,
.final-cta .button-primary:hover {
  box-shadow: 0 18px 34px rgba(16, 17, 20, 0.18);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.16);
}

.final-cta .button-secondary {
  color: var(--button-secondary-text);
  border-color: var(--border-strong);
  background: var(--button-secondary-bg);
}

.button-large {
  min-height: 52px;
  padding: 0 24px;
  font-size: 16px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: rgba(16, 17, 20, 0.1);
  background: rgba(16, 17, 20, 0.04);
}

.nav-toggle-line {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: #ffffff;
  background: var(--charcoal);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 10, 13, 0), rgba(255, 255, 255, 0.08));
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.02);
  will-change: transform;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: 64px;
  align-items: center;
  min-height: 860px;
  padding-top: 110px;
  padding-bottom: 74px;
}

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

.hero-copy .eyebrow,
.hero-copy h1,
.hero-subheadline,
.hero-actions,
.hero-product-shot {
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 780ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy h1 {
  animation-delay: 90ms;
}

.hero-subheadline {
  animation-delay: 210ms;
}

.hero-actions {
  animation-delay: 330ms;
}

.hero-product-shot {
  transform: translateX(24px);
  animation-delay: 260ms;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes heroProductFloat {
  from {
    transform: translateY(-4px);
  }

  to {
    transform: translateY(4px);
  }
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber-strong);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.light-section .eyebrow,
.stakeholder-section .eyebrow,
.final-cta .eyebrow {
  color: var(--accent);
}

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

h1 {
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  max-width: 840px;
}

.hero-subheadline {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-product-shot {
  align-self: center;
  margin: 0;
  width: min(100%, 620px);
  justify-self: end;
}

.hero-product-shot img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  animation: heroProductFloat 11s ease-in-out 1300ms infinite alternate;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 112px;
  padding: 30px 0;
}

.trust-layout p {
  margin: 0;
  flex: 0 0 auto;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.audience-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-primary);
  background: var(--surface-elevated);
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.05);
  font-size: 14px;
  font-weight: 750;
}

.brand-line-section {
  padding: 120px 0 104px;
  background: var(--surface);
}

.brand-line-layout {
  max-width: 940px;
  text-align: center;
}

.brand-line-layout h2 {
  margin-bottom: 14px;
  font-size: 58px;
}

.brand-line-layout p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
}

.portfolio-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--surface), var(--paper) 82%);
}

.portfolio-layout {
  display: grid;
  gap: 54px;
}

.portfolio-product-shot {
  width: min(100%, 1120px);
  margin: 0 auto;
  transition: transform 440ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 440ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(16, 17, 20, 0.16);
}

.section {
  padding: 118px 0;
}

.light-section,
.stakeholder-section,
.story-section,
.process-section {
  background: var(--paper);
}

.field-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
}

.field-layout .section-heading {
  margin-bottom: 0;
}

.field-copy p {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--ink-muted);
  font-size: 22px;
  line-height: 1.48;
  font-weight: 500;
}

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

.field-proof-grid div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface-elevated);
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.06);
}

.field-proof-grid strong,
.field-proof-grid span {
  display: block;
}

.field-proof-grid strong {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1;
}

.field-proof-grid span {
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.story-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 500;
}

.story-visual {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 0.95fr);
  gap: 18px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 24% 18%, rgba(127, 214, 194, 0.18), transparent 28%),
    linear-gradient(145deg, var(--surface), var(--surface-secondary));
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.scatter-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.scatter-list span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  background: var(--surface-elevated);
  font-size: 12px;
  font-weight: 800;
}

.story-connector {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 17, 20, 0.18), var(--teal));
}

.story-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  transform: translateY(-50%) rotate(45deg);
}

.workspace-node {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 22px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    #111820;
  box-shadow: 0 22px 52px rgba(16, 17, 20, 0.22);
}

.workspace-node span {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-node strong {
  max-width: 260px;
  font-size: 31px;
  line-height: 1.05;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.56;
  font-weight: 500;
}

.section-heading-centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered p {
  margin-right: auto;
  margin-left: auto;
}

h2 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.06;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.16;
}

.product-story-section {
  overflow: hidden;
  padding-top: 166px;
  padding-bottom: 166px;
}

.product-story-intro {
  max-width: 860px;
  margin-bottom: 96px;
}

.product-story-list {
  display: grid;
  gap: 156px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(520px, 1.42fr);
  gap: 86px;
  align-items: center;
}

.product-feature-reverse {
  grid-template-columns: minmax(520px, 1.42fr) minmax(0, 0.58fr);
}

.product-feature-reverse .product-feature-copy {
  grid-column: 2;
}

.product-feature-reverse .product-feature-shot {
  grid-column: 1;
  grid-row: 1;
}

.product-feature-copy {
  max-width: 430px;
}

.product-feature-copy h3 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: 0;
}

.product-feature-copy p:not(.feature-kicker) {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.58;
  font-weight: 500;
}

.product-feature-shot {
  position: relative;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface-secondary);
  box-shadow: 0 38px 100px rgba(16, 17, 20, 0.16);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-feature-shot::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 50%, rgba(133, 101, 51, 0.055), transparent 70%);
  pointer-events: none;
}

.product-feature-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 20px;
}

[data-reveal-section],
[data-reveal] .product-feature-copy,
[data-reveal] .product-feature-shot {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 660ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 660ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal-section="left"] {
  transform: translateX(-16px);
}

[data-reveal-section="right"] {
  transform: translateX(16px);
}

[data-reveal] .product-feature-shot {
  transform: translateY(16px) scale(0.99);
  transition-delay: calc(var(--reveal-delay, 0ms) + 110ms);
}

[data-motion="split-left"] .product-feature-copy {
  transform: translateX(16px);
}

[data-motion="split-left"] .product-feature-shot {
  transform: translateX(-16px) scale(0.99);
}

[data-motion="split-right"] .product-feature-copy {
  transform: translateX(-16px);
}

[data-motion="split-right"] .product-feature-shot {
  transform: translateX(16px) scale(0.99);
}

[data-motion="fade-up"] .product-feature-copy {
  transform: translateY(16px);
}

[data-motion="fade-up"] .product-feature-shot {
  transform: translateY(16px) scale(0.99);
}

[data-reveal-section].is-visible,
[data-reveal].is-visible .product-feature-copy,
[data-reveal].is-visible .product-feature-shot {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible .product-feature-shot {
  transform: translateY(0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .product-feature-shot:hover,
  .portfolio-product-shot:hover {
    transform: translateY(-6px);
    box-shadow: 0 46px 116px rgba(16, 17, 20, 0.2);
  }
}

.stakeholder-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface-elevated);
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stakeholder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 17, 20, 0.14);
  box-shadow: 0 24px 52px rgba(16, 17, 20, 0.1);
}

.stakeholder-card p,
.workspace-copy p,
.ai-copy p,
.process-card p,
.video-card p,
.final-cta p,
.footer-brand p {
  color: var(--ink-muted);
  line-height: 1.62;
}

.feature-kicker {
  min-height: 0 !important;
  margin: 0 0 10px !important;
  color: var(--accent) !important;
  font-size: 12px !important;
  font-weight: 800;
  line-height: 1.2 !important;
}

.product-feature-shot img,
.hero-product-shot img,
.portfolio-product-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface-elevated);
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.06);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 999px;
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
}

.process-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.workspace-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 20%, rgba(127, 214, 194, 0.2), transparent 30%),
    linear-gradient(180deg, #080a0d, #121820);
}

.workspace-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: center;
}

.workspace-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(127, 214, 194, 0.12);
}

.service-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 520px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 20% 12%, rgba(127, 214, 194, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    #10151c;
  box-shadow: var(--shadow-dark);
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border-radius: calc(var(--radius-card) - 6px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 74%, transparent);
}

.service-card,
.service-flow {
  position: relative;
  z-index: 1;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.service-card::before {
  content: "";
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06)),
    rgba(127, 214, 194, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.service-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.06)),
    rgba(215, 165, 83, 0.18);
}

.service-card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.05;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

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

.service-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-flow span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.stakeholder-card {
  min-height: 210px;
  padding: 24px;
}

.stakeholder-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.ai-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(215, 165, 83, 0.24), transparent 28%),
    radial-gradient(circle at 86% 26%, rgba(127, 214, 194, 0.18), transparent 30%),
    linear-gradient(180deg, #07080a, #111720 70%, #080a0d);
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.ai-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.search-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.search-bubbles span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 700;
}

.ai-mockup {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}

.ai-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.1);
}

.ai-search-bar span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(127, 214, 194, 0.12);
}

.ai-search-bar p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.ai-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.ai-result-grid div {
  min-height: 158px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(155deg, #28333b, #151a20 52%, #b4863f);
}

.ai-result-grid div:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(155deg, #243d3d, #151a20 54%, #6eb7a5);
}

.ai-result-grid div:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(155deg, #3b2f24, #151a20 54%, #d7a553);
}

.ai-insight {
  padding: 18px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.1);
}

.ai-insight strong {
  display: block;
  margin-bottom: 6px;
}

.ai-insight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.video-section {
  background: var(--paper);
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  gap: 54px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.video-card h2 {
  max-width: 520px;
}

.video-card p {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 18px;
}

.video-placeholder {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #111820, #283540 54%, #8c6936);
}

.video-placeholder span {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.video-placeholder span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #111820;
}

.video-placeholder strong {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.final-cta {
  padding: 118px 0;
  background:
    linear-gradient(135deg, rgba(215, 165, 83, 0.2), transparent 35%),
    var(--surface);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto;
  gap: 56px;
  align-items: end;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 18px;
}

.cta-actions {
  justify-content: flex-end;
}

.site-footer {
  color: #ffffff;
  background: #090b0e;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(0, 1.24fr);
  gap: 54px;
  padding: 76px 0;
}

.footer-brand p {
  max-width: 370px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.footer-columns h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
}

.footer-columns a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-columns a:hover {
  color: #ffffff;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 44px;
  }

  .hero-content,
  .field-layout,
  .story-layout,
  .product-feature,
  .product-feature-reverse,
  .video-card,
  .workspace-layout,
  .ai-layout,
  .cta-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero-product-shot {
    align-self: auto;
    justify-self: start;
    max-width: 620px;
  }

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

  .product-story-list {
    gap: 112px;
  }

  .product-feature,
  .product-feature-reverse {
    gap: 42px;
  }

  .product-feature-reverse .product-feature-copy,
  .product-feature-reverse .product-feature-shot {
    grid-column: auto;
    grid-row: auto;
  }

  .product-feature-copy {
    max-width: 680px;
  }

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

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 74px;
  }

  .page-grid {
    width: min(calc(100% - 34px), var(--max-width));
  }

  .nav-toggle {
    display: block;
  }

  .brand {
    min-height: 44px;
  }

  .brand-logo {
    height: 39px;
    max-width: 194px;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    display: none;
    min-height: calc(100vh - var(--nav-height));
    padding: 18px 20px 32px;
    color: var(--ink);
    background: var(--nav-surface-strong);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(24px);
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: grid;
    gap: 8px;
  }

  .nav-links a,
  .nav-login {
    min-height: 52px;
    padding: 0 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 22px;
    opacity: 1;
  }

  .nav-actions {
    margin-top: 18px;
  }

  .nav-actions .button {
    width: 100%;
  }

  .hero-section,
  .hero-content {
    min-height: 820px;
  }

  .hero-content {
    gap: 44px;
    padding-top: 112px;
  }

  h1 {
    font-size: 50px;
    line-height: 1.02;
  }

  .hero-subheadline {
    font-size: 19px;
  }

  .trust-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience-pills {
    justify-content: flex-start;
  }

  .section,
  .brand-line-section,
  .final-cta {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  h2 {
    font-size: 38px;
  }

  .brand-line-layout h2 {
    font-size: 42px;
  }

  .brand-line-layout p,
  .field-copy p {
    font-size: 20px;
  }

  .service-visual {
    grid-template-columns: 1fr;
  }

  .service-flow,
  .ai-result-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    grid-template-columns: 1fr;
  }

  .story-connector {
    width: 2px;
    height: 54px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(16, 17, 20, 0.18), var(--teal));
  }

  .story-connector::after {
    top: auto;
    right: 50%;
    bottom: -2px;
    transform: translateX(50%) rotate(135deg);
  }

  .video-card {
    padding: 24px;
  }

  .ai-result-grid div {
    min-height: 120px;
  }
}

@media (max-width: 620px) {
  :root {
    --nav-height: 68px;
  }

  .nav-shell {
    width: min(calc(100% - 28px), 1240px);
    gap: 18px;
  }

  .brand {
    min-height: 40px;
  }

  .brand-logo {
    height: 35px;
    max-width: 174px;
  }

  .hero-section,
  .hero-content {
    min-height: 780px;
  }

  .hero-image {
    object-position: 63% center;
  }

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 21px;
  }

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

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

  .hero-product-shot {
    width: 100%;
  }

  .field-proof-grid,
  .process-grid,
  .stakeholder-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .audience-pills span {
    min-height: 36px;
    padding: 0 13px;
    font-size: 13px;
  }

  .portfolio-layout {
    gap: 34px;
  }

  .portfolio-product-shot img {
    border-radius: 16px;
    box-shadow: 0 24px 58px rgba(16, 17, 20, 0.16);
  }

  .product-story-intro {
    margin-bottom: 58px;
  }

  .product-story-list {
    gap: 82px;
  }

  .product-feature-copy h3 {
    font-size: 30px;
  }

  .product-feature-copy p:not(.feature-kicker) {
    font-size: 17px;
  }

  .product-feature-shot {
    padding: 6px;
    border-radius: 18px;
    box-shadow: 0 22px 54px rgba(16, 17, 20, 0.13);
  }

  .product-feature-shot img {
    border-radius: 14px;
  }

  .ai-mockup,
  .video-card {
    padding: 14px;
  }

  .service-visual {
    min-height: auto;
    padding: 12px;
  }

  .service-card {
    min-height: 250px;
    padding: 22px;
  }

  .service-flow span {
    min-height: 58px;
  }

  .story-visual,
  .video-placeholder {
    min-height: 260px;
  }

  .scatter-list {
    grid-template-columns: 1fr;
  }

  .workspace-node {
    min-height: 150px;
  }

  .footer-layout {
    padding: 58px 0;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --page-bg: #0b0d10;
    --surface: #15181d;
    --surface-secondary: #111318;
    --surface-elevated: #1a1d22;
    --text-primary: #f7f8fa;
    --text-secondary: #b8bec7;
    --text-muted: #929aa5;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.18);
    --button-primary-bg: #ffffff;
    --button-primary-text: #111111;
    --button-secondary-bg: #1a1d22;
    --button-secondary-text: #ffffff;
    --accent: #e1b464;
    --accent-on-dark: #f2bd5e;
    --nav-surface: rgba(15, 18, 22, 0.86);
    --nav-surface-strong: rgba(15, 18, 22, 0.97);
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.38);
    --hero-overlay:
      linear-gradient(90deg, rgba(5, 7, 10, 0.95) 0%, rgba(5, 7, 10, 0.74) 34%, rgba(5, 7, 10, 0.38) 62%, rgba(5, 7, 10, 0.54) 100%),
      linear-gradient(180deg, rgba(5, 7, 10, 0.52) 0%, rgba(5, 7, 10, 0.16) 46%, rgba(5, 7, 10, 0.98) 100%);
    --hero-overlay-mobile:
      linear-gradient(90deg, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.7)),
      linear-gradient(180deg, rgba(5, 7, 10, 0.28), rgba(5, 7, 10, 0.99));
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    color: var(--text-primary);
    border-bottom-color: var(--border);
  }

  .site-header.is-scrolled .brand-logo,
  .site-header.is-open .brand-logo {
    filter: invert(1) brightness(1.8);
  }

  .site-header.is-scrolled .nav-links a:hover,
  .site-header.is-scrolled .nav-login:hover,
  .site-header.is-open .nav-links a:hover,
  .site-header.is-open .nav-login:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header.is-scrolled .button-primary,
  .site-header.is-open .button-primary,
  .final-cta .button-primary {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  }

  .light-section .eyebrow,
  .stakeholder-section .eyebrow,
  .final-cta .eyebrow,
  .feature-kicker {
    color: var(--accent) !important;
  }

  .portfolio-product-shot img,
  .product-feature-shot img {
    border-color: var(--border);
  }

  .portfolio-product-shot img {
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  }

  .field-proof-grid div,
  .stakeholder-card,
  .process-card,
  .video-card {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  }

  .story-visual {
    background:
      radial-gradient(circle at 24% 18%, rgba(127, 214, 194, 0.12), transparent 28%),
      linear-gradient(145deg, var(--surface-elevated), var(--surface-secondary));
  }

  .story-connector {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), var(--teal));
  }

  .product-feature-shot {
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
  }

  .product-feature-shot::before {
    background: radial-gradient(circle at 50% 50%, rgba(215, 165, 83, 0.08), transparent 70%);
  }

  .process-card span {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  }

  .video-placeholder span {
    background: rgba(255, 255, 255, 0.94);
  }

  .final-cta {
    background:
      linear-gradient(135deg, rgba(215, 165, 83, 0.12), transparent 38%),
      var(--surface);
  }

  .nav-menu {
    color: var(--text-primary);
    border-color: var(--border);
  }

  .nav-links a,
  .nav-login {
    border-color: var(--border);
  }

  .portfolio-product-shot img,
  .product-feature-shot img,
  .hero-product-shot img {
    filter: none;
  }
}

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

  [data-reveal-section],
  [data-reveal] .product-feature-copy,
  [data-reveal] .product-feature-shot {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-subheadline,
  .hero-actions,
  .hero-product-shot,
  .hero-product-shot img {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
