:root {
  --ink: #12221f;
  --paper: #f5f2ea;
  --acid: #d8fa3e;
  --line: rgba(18, 34, 31, .18);
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.hero {
  min-height: 710px;
  overflow: hidden;
  position: relative;
  background: #123b35;
  color: #f7f4ed;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 23px;
  height: 19px;
  display: flex;
  gap: 2px;
  align-items: flex-end;
  transform: skewY(-18deg);
}

.brand-mark i {
  display: block;
  width: 6px;
  background: currentColor;
}

.brand-mark i:nth-child(1) {
  height: 10px;
}

.brand-mark i:nth-child(2) {
  height: 17px;
}

.brand-mark i:nth-child(3) {
  height: 13px;
}

.nav-links {
  display: flex;
  gap: 33px;
  font-size: 13px;
  color: #c9d7d1;
}

.nav-links a:hover {
  color: var(--acid);
}

.nav-cta {
  font-size: 13px;
  border-bottom: 1px solid var(--acid);
  padding: 8px 0;
  color: var(--acid);
}

.nav-cta span {
  margin-left: 8px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 554px;
  display: grid;
  grid-template-columns: 1fr 1.07fr;
  align-items: center;
}

.hero-copy {
  padding: 70px 0 90px;
}

.kicker,
.section-label {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-geist-mono), monospace;
  font-weight: 600;
  letter-spacing: .11em;
  font-size: 11px;
}

.kicker {
  color: var(--acid);
  display: flex;
  align-items: center;
  gap: 9px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 250, 62, .15);
}

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

h1 {
  margin: 23px 0;
  font-weight: 500;
  letter-spacing: -.072em;
  line-height: .94;
  font-size: clamp(57px, 6.2vw, 72px);
}

em {
  color: var(--acid);
  font-style: normal;
}

.hero-sub {
  color: #c0cfca;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 17px 15px 20px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s;
}

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

.button b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 17px;
  border-radius: 50%;
}

.primary {
  background: var(--acid);
  color: var(--ink);
}

.primary b {
  background: var(--ink);
  color: var(--acid);
}

.text-link {
  color: #e5ebe8;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  padding-bottom: 5px;
}

.text-link span {
  margin-left: 8px;
}

.hero-object {
  height: 510px;
  position: relative;
}

.box-model {
  position: absolute;
  left: 22%;
  top: 137px;
  width: 285px;
  height: 220px;
  transform: rotate(-5deg);
  filter: drop-shadow(25px 27px 18px rgba(0, 0, 0, .23));
}

.box-front {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 172px;
  width: 227px;
  background: #edb286;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px;
  color: #133c36;
}

.box-logo {
  font-size: 65px;
  font-weight: 900;
  letter-spacing: -.15em;
  line-height: 1;
}

.box-front small {
  letter-spacing: .1em;
  font: 9px var(--font-geist-mono), monospace;
}

.box-top {
  position: absolute;
  top: 0;
  left: 20px;
  width: 228px;
  height: 61px;
  transform: skewX(-49deg);
  transform-origin: bottom left;
  background: #ffd2b1;
  padding: 17px 25px;
  font: 10px var(--font-geist-mono), monospace;
  letter-spacing: .18em;
}

.box-side {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58px;
  height: 172px;
  background: #c27458;
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 100%);
  padding: 42px 10px;
}

.box-side span {
  font: 9px var(--font-geist-mono), monospace;
  writing-mode: vertical-rl;
  letter-spacing: .12em;
  color: #ffe0c9;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(216, 250, 62, .5);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 440px;
  height: 164px;
  top: 133px;
  left: 8%;
}

.orbit-two {
  width: 372px;
  height: 370px;
  top: 55px;
  left: 18%;
  opacity: .5;
}

.measure {
  position: absolute;
  color: var(--acid);
  font: 10px var(--font-geist-mono), monospace;
  letter-spacing: .1em;
}

.measure span {
  padding-left: 8px;
}

.measure-top {
  left: 20%;
  top: 86px;
}

.measure-side {
  right: 0;
  bottom: 128px;
  writing-mode: vertical-rl;
}

.data-tag {
  position: absolute;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(14, 53, 47, .58);
  backdrop-filter: blur(5px);
}

.data-tag b {
  font: 10px var(--font-geist-mono), monospace;
  color: var(--acid);
  letter-spacing: .13em;
}

.data-tag span {
  font-size: 10px;
  color: #d9e4df;
}

.tag-left {
  left: 0;
  top: 314px;
}

.tag-right {
  right: 1%;
  top: 183px;
}

.object-note {
  position: absolute;
  bottom: 22px;
  right: 0;
  font: 9px var(--font-geist-mono), monospace;
  color: #93b6aa;
  letter-spacing: .12em;
}

.ticker {
  position: absolute;
  bottom: 0;
  height: 64px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #a8bdb4;
  font: 10px var(--font-geist-mono), monospace;
  letter-spacing: .18em;
  white-space: nowrap;
}

.intro {
  padding: 126px 0 110px;
}

.section-label {
  color: #588075;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  align-items: end;
  margin-top: 30px;
}

.intro h2,
.tools h2,
.insights h2 {
  font-size: clamp(34px, 4.5vw, 61px);
  line-height: 1.04;
  letter-spacing: -.065em;
  font-weight: 500;
  margin-bottom: 0;
}

.intro h2 em,
.tools h2 em {
  color: #e45f4b;
}

.intro-right {
  padding-bottom: 3px;
}

.intro-right p {
  font-size: 16px;
  line-height: 1.68;
  max-width: 320px;
}

.arrow-link {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  display: inline-block;
}

.arrow-link span {
  margin-left: 23px;
}

.stat-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 85px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-row div {
  display: flex;
  align-items: baseline;
  gap: 15px;
  border-right: 1px solid var(--line);
  padding-left: 22px;
}

.stat-row div:first-child {
  padding-left: 0;
}

.stat-row div:last-child {
  border: 0;
}

.stat-row strong {
  font-size: 30px;
  letter-spacing: -.06em;
}

.stat-row span {
  font-size: 12px;
  color: #60706a;
}

.solutions {
  background: var(--ink);
  color: #f5f2ea;
  padding: 105px 0 112px;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.solutions .section-label,
.insights .section-label {
  color: var(--acid);
}

.section-top > p:last-child {
  font-size: 15px;
  line-height: 1.6;
  color: #b6c6c0;
  text-align: right;
}

.solution-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 55px;
  margin-top: 58px;
}

.solution-list {
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.solution-list button {
  cursor: pointer;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding: 21px 0;
  background: transparent;
  color: #93aaa2;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  text-align: left;
  align-items: center;
  transition: .2s;
}

.solution-list button span {
  font: 10px var(--font-geist-mono), monospace;
}

.solution-list button strong {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -.055em;
}

.solution-list button i {
  font-style: normal;
  opacity: 0;
  transform: translateX(-6px);
  transition: .2s;
}

.solution-list button.selected {
  color: var(--acid);
}

.solution-list button.selected i {
  opacity: 1;
  transform: translateX(0);
}

.solution-feature {
  min-height: 456px;
  padding: 25px 29px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
}

.solution-feature.lime {
  background: var(--acid);
}

.solution-feature.coral {
  background: #ff8b6b;
}

.solution-feature.violet {
  background: #c8b5ff;
}

.feature-head {
  display: flex;
  justify-content: space-between;
  font: 10px var(--font-geist-mono), monospace;
  letter-spacing: .1em;
}

.feature-head p {
  margin: 0;
}

.feature-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 21px 21px;
}

.visual-card {
  position: absolute;
  width: 153px;
  height: 107px;
  border: 2px solid var(--ink);
  background: rgba(245, 242, 234, .56);
}

.visual-card.one {
  transform: rotate(12deg);
  left: 27%;
  top: 36px;
}

.visual-card.two {
  transform: rotate(-7deg);
  left: 40%;
  top: 18px;
}

.visual-line {
  position: absolute;
  border-top: 2px solid var(--ink);
  width: 94%;
  top: 93px;
  transform: rotate(-3deg);
}

.feature-visual b {
  position: absolute;
  bottom: 4px;
  right: 2px;
  font-size: 76px;
  letter-spacing: -.095em;
  font-weight: 800;
}

.feature-copy {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: end;
}

.feature-copy h3 {
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -.045em;
  margin: 0;
}

.feature-copy p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 17px;
}

.feature-copy a {
  grid-column: 2;
  font-size: 13px;
  font-weight: bold;
  border-bottom: 1px solid var(--ink);
  width: max-content;
  padding-bottom: 5px;
}

.feature-copy a span {
  margin-left: 12px;
}

.tools {
  padding: 126px 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.tool-list {
  border-top: 1px solid var(--line);
}

.tool-item {
  min-height: 104px;
  display: grid;
  grid-template-columns: 46px 48px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: .2s;
}

.tool-item:hover {
  background: #e9e5da;
  padding-left: 12px;
}

.tool-number {
  font: 10px var(--font-geist-mono), monospace;
  color: #6b7a74;
}

.tool-icon {
  font-size: 23px;
  color: #e45f4b;
}

.tool-item strong,
.tool-item small {
  display: block;
}

.tool-item strong {
  font-size: 18px;
  letter-spacing: -.04em;
}

.tool-item small {
  font-size: 12px;
  color: #62706b;
  margin-top: 5px;
}

.tool-item b {
  font-size: 22px;
  font-weight: 400;
}

.insights {
  background: #e45f4b;
  color: #192722;
  padding: 87px 0 71px;
}

.insight-wrap {
  position: relative;
}

.insight-main {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.insights h2 em {
  color: #f2f0e8;
}

.insight-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  align-self: end;
}

.insight-steps div {
  border-top: 1px solid rgba(25, 39, 34, .6);
  padding-top: 12px;
}

.insight-steps span {
  font: 10px var(--font-geist-mono), monospace;
}

.insight-steps p {
  margin: 27px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.dark {
  background: var(--ink);
  color: #f6f1e7;
  margin-top: 64px;
}

.dark b {
  color: var(--ink);
  background: var(--acid);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  font-size: 11px;
  color: #687671;
}

.footer .brand {
  color: var(--ink);
}

.footer p {
  margin: 0;
}

@media(max-width:760px) {
  .shell {
    width: min(100% - 36px, 560px);
  }

  .hero {
    min-height: 820px;
  }

  .nav {
    height: 70px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 680px;
  }

  .hero-copy {
    padding: 54px 0 0;
  }

  .hero-object {
    height: 390px;
    margin-top: -17px;
    transform: scale(.83);
    transform-origin: top center;
  }

  .box-model {
    left: 18%;
  }

  .tag-left {
    left: -1%;
  }

  .tag-right {
    right: -2%;
  }

  .object-note {
    right: -3%;
  }

  .ticker {
    height: 46px;
    font-size: 8px;
    gap: 22px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .ticker b:nth-of-type(n+3), .ticker span:nth-of-type(n+4) {
    display: none;
  }

  .intro {
    padding: 82px 0;
  }

  .intro-grid, .solution-layout, .tools, .insight-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-right {
    max-width: 430px;
  }

  .stat-row {
    margin-top: 55px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .stat-row div {
    border: 0;
    padding-left: 0;
  }

  .section-top {
    gap: 20px;
  }

  .solution-layout {
    margin-top: 40px;
  }

  .solution-feature {
    min-height: 430px;
  }

  .feature-copy {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-copy a {
    grid-column: auto;
  }

  .tools {
    padding: 82px 0;
  }

  .insight-steps {
    gap: 12px;
  }

  .insight-steps p {
    font-size: 12px;
  }

  .footer {
    min-height: 140px;
    align-items: flex-start;
    padding-top: 31px;
    flex-direction: column;
    gap: 14px;
  }

  .nav-cta {
    font-size: 12px;
  }
}

@media(max-width:440px) {
  h1 {
    font-size: 42px;
  }

  .hero-actions {
    gap: 18px;
  }

  .button {
    font-size: 13px;
    padding-left: 15px;
    gap: 14px;
  }

  .hero-object {
    transform: scale(.71);
    width: 141%;
    margin-left: -20%;
  }

  .box-model {
    left: 23%;
  }

  .measure-side {
    right: 8%;
  }

  .section-top > p:last-child {
    font-size: 12px;
  }

  .solution-list button strong {
    font-size: 25px;
  }

  .feature-visual b {
    font-size: 62px;
  }

  .insight-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .insight-steps p {
    margin-top: 10px;
  }

  .dark {
    margin-top: 38px;
  }
}
