:root {
  --ink: #081115;
  --slate: #0d181d;
  --slate-2: #132229;
  --slate-3: #1b2b32;
  --ivory: #f2eadf;
  --ivory-2: #e6ddd1;
  --muted: #a8b4b5;
  --line: rgba(242, 234, 223, .12);
  --line-strong: rgba(242, 234, 223, .22);
  --copper: #d89152;
  --copper-dark: #9a5e34;
  --cyan: #68d4df;
  --blue: #4ca8d8;
  --shadow: 0 24px 60px rgba(0, 0, 0, .26);
  --max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background:
    radial-gradient(circle at 72% 8%, rgba(104, 212, 223, .12), transparent 28rem),
    radial-gradient(circle at 20% 84%, rgba(216, 145, 82, .09), transparent 24rem);
  z-index: -2;
}

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

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

p {
  margin: 0;
  color: #c5d0cf;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.1rem, 6.2vw, 6.1rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2.05rem, 3.8vw, 4rem);
  max-width: 760px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.eyebrow,
.kicker {
  color: var(--copper);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 230, 219, .96);
  border-bottom: 1px solid rgba(14, 25, 30, .16);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 44px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: #16242a;
  font-size: .84rem;
  font-weight: 850;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a[aria-current="page"] {
  color: var(--copper-dark);
}

.nav-cta {
  border: 1px solid rgba(154, 94, 52, .42);
  border-radius: 8px;
  padding: 10px 18px !important;
  color: #704421;
  background: rgba(255, 255, 255, .22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(14, 25, 30, .18);
  border-radius: 8px;
  background: transparent;
  color: #142329;
  font-size: 1.35rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(6, 13, 16, .99), rgba(10, 25, 30, .95) 58%, rgba(6, 13, 16, .99)),
    var(--ink);
}

.hero::before,
.page-hero::before,
.tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .46;
  background-image:
    linear-gradient(rgba(242, 234, 223, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 223, .055) 1px, transparent 1px);
  background-size: 92px 92px;
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 54%, rgba(104, 212, 223, .12) 54.2%, transparent 54.8%),
    linear-gradient(110deg, transparent 0 76%, rgba(216, 145, 82, .13) 76.1%, transparent 76.5%);
  opacity: .7;
  pointer-events: none;
}

.hero .container::before {
  content: "";
  position: absolute;
  left: 110px;
  bottom: -255px;
  width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242, 234, 223, .025);
  border: 1px solid rgba(242, 234, 223, .035);
  pointer-events: none;
  z-index: -1;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-bg-video::-webkit-media-controls {
  display: none !important;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero .container {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(540px, .86fr);
  align-items: center;
  gap: clamp(44px, 4.8vw, 78px);
  padding: clamp(36px, 4.5vw, 62px) 0;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-copy p {
  max-width: 760px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.46;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.55rem, 4.48vw, 4.86rem);
  line-height: .99;
}

.support-line {
  display: inline-flex;
  align-items: center;
  max-width: max-content;
  padding-left: 18px;
  border-left: 2px solid var(--cyan);
  color: var(--ivory);
  font-weight: 750;
  color: #c9d1cf;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid rgba(242, 234, 223, .22);
  color: var(--ivory);
  font-weight: 850;
  font-size: .94rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 145, 82, .8);
}

.btn-primary {
  background: linear-gradient(180deg, #e09a58, #c7793d);
  color: #1b100a;
  border-color: rgba(216, 145, 82, .8);
  box-shadow: 0 10px 28px rgba(216, 145, 82, .2);
}

.btn-secondary {
  background: rgba(242, 234, 223, .035);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 760px;
  border-top: 1px solid rgba(242, 234, 223, .18);
  border-bottom: 1px solid rgba(242, 234, 223, .18);
}

.tag-row span {
  flex: 1 1 0;
  min-width: 190px;
  padding: 9px 13px;
  border: 0;
  border-right: 1px solid rgba(242, 234, 223, .16);
  color: #bdc9c8;
  font-size: .82rem;
  font-weight: 850;
  background: transparent;
}

.tag-row span:last-child {
  border-right: 0;
}

.hero-panel {
  position: relative;
  padding: 25px 32px 28px;
  border: 1px solid rgba(242, 234, 223, .15);
  border-radius: 10px;
  background:
    radial-gradient(circle at 95% 8%, rgba(104, 212, 223, .13), transparent 13rem),
    linear-gradient(145deg, rgba(11, 18, 22, .9), rgba(9, 15, 18, .92));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(124deg, transparent 0 52%, rgba(216, 145, 82, .22) 52.3%, transparent 53%),
    linear-gradient(168deg, transparent 0 62%, rgba(104, 212, 223, .1) 62.2%, transparent 62.7%);
  opacity: .9;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 32px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 13px rgba(104, 212, 223, .1), 0 0 34px rgba(104, 212, 223, .35);
  opacity: .62;
}

.panel-title {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(242, 234, 223, .14);
  color: var(--copper);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.value-flow {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.flow-card {
  position: relative;
  min-height: 104px;
  padding: 22px 28px;
  border: 1px solid rgba(242, 234, 223, .13);
  border-radius: 6px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 2px 0 0 rgba(216, 145, 82, .72);
}

.flow-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -23px;
  width: 1px;
  height: 14px;
  background: linear-gradient(var(--copper), var(--cyan));
  box-shadow: 0 0 16px rgba(104, 212, 223, .45);
}

.flow-card:last-child::after {
  display: none;
}

.flow-card .kicker {
  display: block;
  margin-bottom: 12px;
  font-size: .7rem;
  letter-spacing: .17em;
}

.flow-card:nth-child(2) {
  border-color: rgba(104, 212, 223, .24);
  box-shadow: inset 2px 0 0 rgba(104, 212, 223, .78);
}

.flow-card p {
  color: var(--ivory);
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.24;
}

.panel-tags {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(242, 234, 223, .16);
}

.panel-tags span {
  padding: 13px 10px;
  text-align: center;
  color: #dbe4e2;
  border: 0;
  border-right: 1px solid rgba(242, 234, 223, .12);
  background: rgba(0, 0, 0, .08);
  font-size: .82rem;
  font-weight: 800;
}

.panel-tags span:last-child {
  border-right: 0;
}

.intro-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(9, 17, 20, .16);
  border-bottom: 1px solid rgba(9, 17, 20, .16);
  background: var(--ivory);
  color: #172329;
}

.intro-lane {
  padding: 28px clamp(20px, 3vw, 38px);
  min-height: 160px;
  border-right: 1px solid rgba(9, 17, 20, .14);
}

.intro-lane:last-child {
  border-right: none;
}

.intro-lane .kicker {
  color: var(--copper-dark);
}

.intro-lane h3 {
  margin: 12px 0 10px;
  font-size: 1.12rem;
}

.intro-lane p {
  color: #435157;
  font-size: .93rem;
}

.section {
  position: relative;
  padding: clamp(72px, 8vw, 118px) 0;
  background: var(--ink);
}

.section-alt {
  background: linear-gradient(135deg, #111d23, #0c1519 68%);
}

.section-ivory {
  background: var(--ivory);
  color: #172329;
}

.section-ivory p {
  color: #445157;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 830px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.statement-card {
  border: 1px solid rgba(242, 234, 223, .13);
  border-left: 3px solid var(--copper);
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(104, 212, 223, .09), transparent 13rem),
    linear-gradient(145deg, rgba(30, 46, 54, .78), rgba(14, 24, 29, .94));
  box-shadow: var(--shadow);
}

.statement-card p + p {
  margin-top: 18px;
}

.cards-3,
.cards-2,
.cards-4,
.cards-6 {
  display: grid;
  gap: 18px;
}

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

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

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(242, 234, 223, .13);
  background:
    radial-gradient(circle at 100% 0, rgba(104, 212, 223, .055), transparent 12rem),
    linear-gradient(145deg, rgba(30, 42, 49, .72), rgba(15, 24, 29, .96));
  box-shadow: inset 1px 0 0 rgba(216, 145, 82, .35);
}

.card.light {
  background: rgba(255, 255, 255, .58);
  border-color: rgba(9, 17, 20, .1);
  color: #162329;
  box-shadow: inset 2px 0 0 rgba(216, 145, 82, .52);
}

.card.light p {
  color: #48565b;
}

.card .kicker {
  display: block;
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: .95rem;
}

.card .text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--copper);
  font-weight: 850;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(242, 234, 223, .12);
  background: rgba(255, 255, 255, .03);
}

.process-step {
  position: relative;
  padding: 30px 24px;
  border-right: 1px solid rgba(242, 234, 223, .1);
}

.process-step:last-child {
  border-right: none;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--copper);
  box-shadow: 0 0 0 6px rgba(216, 145, 82, .12);
}

.process-step h3 {
  margin: 12px 0;
  font-size: 1.08rem;
}

.use-case {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(76px, 8vw, 112px) 22px;
  background:
    radial-gradient(circle at 78% 45%, rgba(216, 145, 82, .12), transparent 20rem),
    linear-gradient(180deg, #f4ede3, #ebe0d1);
  color: #121e24;
  text-align: center;
}

.cta-band .inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.cta-band h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.cta-band p {
  max-width: 740px;
  color: #485359;
}

.cta-band .btn {
  margin-top: 6px;
}

.page-hero .container {
  padding: clamp(86px, 11vw, 142px) 0;
}

.page-hero h1 {
  font-size: clamp(2.9rem, 5.4vw, 5.3rem);
}

.page-hero p {
  max-width: 860px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-mini {
  margin-top: 42px;
  max-width: 560px;
  padding: 24px;
  border: 1px solid rgba(242, 234, 223, .13);
  background: rgba(7, 13, 16, .38);
}

.diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.diagram::before {
  content: "";
  position: absolute;
  inset: 28% 17%;
  border-top: 2px solid rgba(216, 145, 82, .55);
  border-bottom: 2px solid rgba(104, 212, 223, .36);
  transform: skewY(-18deg);
}

.diagram-item {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(242, 234, 223, .12);
  background: rgba(20, 33, 39, .78);
}

.list-stack {
  display: grid;
  gap: 10px;
}

.list-stack li {
  list-style: none;
  padding: 15px 18px;
  border-left: 2px solid var(--copper);
  background: rgba(255, 255, 255, .06);
  color: #e5ecea;
  font-weight: 750;
}

.section-ivory .list-stack li {
  color: #172329;
  background: rgba(255, 255, 255, .56);
}

.timeline {
  display: grid;
  gap: 0;
  border: 1px solid rgba(242, 234, 223, .12);
}

.timeline-item {
  padding: 30px;
  border-bottom: 1px solid rgba(242, 234, 223, .1);
}

.timeline-item:last-child {
  border-bottom: none;
}

.outcome-list {
  display: grid;
  gap: 9px;
}

.outcome-list li {
  list-style: none;
  padding: 14px 18px;
  color: #d9e2df;
  background: rgba(255, 255, 255, .055);
  border-left: 2px solid rgba(104, 212, 223, .6);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .86fr);
  gap: clamp(36px, 5vw, 72px);
}

.form-card,
.info-card {
  padding: 38px;
  border: 1px solid rgba(242, 234, 223, .15);
  background: linear-gradient(145deg, rgba(29, 42, 49, .82), rgba(14, 23, 28, .96));
}

label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--ivory);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(242, 234, 223, .18);
  border-radius: 8px;
  background: rgba(0, 0, 0, .26);
  color: var(--ivory);
  padding: 13px 16px;
  font: inherit;
}

textarea {
  min-height: 210px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid rgba(242, 234, 223, .12);
  background: #071013;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) .7fr .7fr .8fr;
  gap: 44px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 330px;
}

.footer-col h4 {
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 10px;
  color: #b6c2c1;
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.footer-badges img {
  width: 54px;
  height: auto;
}

.copyright {
  width: min(var(--max), calc(100% - 44px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(242, 234, 223, .09);
  color: #829092;
  font-size: .88rem;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 22px;
    background: var(--ivory);
    border-bottom: 1px solid rgba(14, 25, 30, .16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero .container,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: auto;
  }

  .intro-lanes,
  .cards-3,
  .cards-2,
  .cards-4,
  .cards-6,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2) {
    border-right: none;
  }

  .process-step {
    border-bottom: 1px solid rgba(242, 234, 223, .1);
  }
}

@media (max-width: 640px) {
  .container,
  .nav-wrap,
  .copyright {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .intro-lanes,
  .cards-3,
  .cards-2,
  .cards-4,
  .cards-6,
  .process-grid,
  .footer-grid,
  .panel-tags {
    grid-template-columns: 1fr;
  }

  .intro-lane {
    border-right: none;
    border-bottom: 1px solid rgba(9, 17, 20, .14);
  }

  .intro-lane:last-child {
    border-bottom: none;
  }

  .hero-panel,
  .card,
  .statement-card,
  .form-card,
  .info-card {
    padding: 22px;
  }

  .process-step {
    border-right: none;
  }

  .button-row {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
