:root {
  --ink: #10152f;
  --muted: #66708f;
  --blue: #2548e8;
  --blue-2: #6065ff;
  --green: #20bf6b;
  --red: #ff5d63;
  --line: #e8ebf5;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  /* font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; */
  -webkit-font-smoothing: antialiased;
}

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

.scrolly {
  height: auto;
  position: relative;
  background: #fff;
}

.stage {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 660px;
  isolation: isolate;
  background:
    radial-gradient(54% 70% at 50% 44%, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 58%, rgba(249, 250, 255, .98) 100%),
    #fff;
}

.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 62, .035);
}

.ambient {
  position: absolute;
  width: 42vw;
  height: 64vh;
  border-radius: 50%;
  filter: blur(58px);
  opacity: .62;
  pointer-events: none;
  z-index: -1;
}

.ambient-left {
  left: -26vw;
  top: -12vh;
  background: radial-gradient(circle, rgba(96, 104, 255, .26), rgba(123, 116, 255, .06) 55%, transparent 72%);
}

.ambient-right {
  right: -26vw;
  bottom: -20vh;
  background: radial-gradient(circle, rgba(69, 116, 255, .23), rgba(68, 157, 255, .05) 56%, transparent 72%);
}

.site-header {
  height: var(--header-h);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 5.3vw, 102px);
  border-bottom: 1px solid rgba(31, 48, 97, .06);
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  color: #1736a7;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-weight: 760;
  letter-spacing: -.025em;
  font-size: 18px;
  color: #163184;
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: #2B318D;
  margin: 0 4px 0 1px;
}

.ethosh-mark {
  color: #5d68be;
  font-size: 13px;
  transform: translateY(-1px);
}

.ethosh-name {
  color: #6c73b4;
  font-size: 16px;
  font-weight: 450;
}

.demo-button {
  min-width: 108px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 5px;
  background: linear-gradient(180deg, #163aa5, #0c2c83);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(20, 52, 146, .13);
  transition: transform .2s ease, box-shadow .2s ease;
}

.demo-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(20, 52, 146, .2);
}

.story-area {
  position: relative;
  padding: calc(var(--header-h) + 40px) 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #FAFBFD;
}

.flow-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1180px, 92vw);
  height: 230px;
  transform: translate(-50%, -46%);
  will-change: transform, opacity;
}

.flow-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.flow-node {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 110px;
  min-height: 174px;
  transform-origin: center top;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #5362e7;
  will-change: transform, opacity;
  z-index: 4;
}

.icon-tile,
.status-tile {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(247, 247, 255, .98), rgba(237, 239, 255, .9));
  border: 1px solid rgba(102, 105, 255, .38);
  box-shadow:
    0 12px 26px rgba(70, 75, 178, .07),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.icon-tile svg {
  width: 40px;
  height: 40px;
}

.node-label {
  margin-top: 10px;
  text-align: center;
  color: #17224c;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 650;
  letter-spacing: -.015em;
}

.state-badge {
  position: relative;
  margin-top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.state-badge svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.state-ok {
  background: #e9fbf0;
  border: 1px solid #a7e8be;
}

.state-ok svg {
  stroke: #1ebd67;
}

.vericlaim-node {
  width: 138px;
  top: 1px;
  color: #1738af;
  opacity: 0;
}

.vericlaim-logo {
  position: relative;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.vericlaim-logo svg {
  width: 100%;
  height: 100%;
}

.vericlaim-label {
  margin-top: 3px;
  font-size: 13px;
  color: #17318d;
}

.vericlaim-orbit {
  position: absolute;
  top: 8px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 91, 255, .17), rgba(72, 91, 255, .04) 56%, transparent 72%);
  filter: blur(7px);
  transform: scale(.8);
}

.status-node {
  color: var(--red);
}

.status-tile {
  overflow: visible;
  border: 0;
  background: none;
  box-shadow: none;
}

.status-surface {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  box-shadow: 0 11px 25px rgba(62, 66, 145, .06), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.fail-surface {
  background: linear-gradient(145deg, rgba(255, 250, 250, .98), rgba(255, 237, 239, .92));
  border: 1px solid rgba(255, 93, 99, .48);
}

.success-surface {
  opacity: 0;
  background: linear-gradient(145deg, rgba(247, 255, 250, .98), rgba(226, 252, 235, .94));
  border: 1px solid rgba(32, 191, 107, .52);
}

.status-icon {
  position: absolute;
  width: 41px;
  height: 41px;
  z-index: 2;
}

.success-icon {
  opacity: 0;
  color: var(--green);
}

.fail-icon {
  color: var(--red);
}

.status-label {
  position: relative;
  min-height: 31px;
  width: 100%;
}

.status-label span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.fail-label {
  color: var(--red);
}

.success-label {
  color: var(--green);
  opacity: 0;
  padding-top: 7px;
}

.status-badge {
  background: #fff0f1;
  border: 1px solid #ffb8bc;
}

.status-badge svg {
  position: absolute;
  stroke: var(--red);
}

.badge-check {
  opacity: 0;
  stroke: var(--green) !important;
}

.status-pulse {
  position: absolute;
  top: 8px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1.5px solid rgba(32, 191, 107, .35);
  opacity: 0;
  transform: scale(.65);
  pointer-events: none;
}

.connector {
  position: absolute;
  top: 57px;
  left: 50%;
  height: 18px;
  width: 32px;
  transform: translate(-50%, -50%);
  color: #7d7fff;
  z-index: 2;
  will-change: transform, opacity;
}

.connector span,
.connector span::after {
  position: absolute;
  display: block;
  content: "";
}

.connector span {
  left: 1px;
  top: 8px;
  width: 25px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.connector span::after {
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.final-connector {
  color: var(--red);
  opacity: 0;
}

.issue-layer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
}

.issue-pill {
  --accent: #ffb522;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 27px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 72%, #fff);
  border-radius: 7px;
  background: rgba(255, 255, 255, .86);
  color: #6b6e7d;
  font-size: 10px;
  font-weight: 560;
  box-shadow: 0 8px 22px rgba(62, 66, 145, .045);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.issue-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.issue-quality {
  --accent: #f2c932;
}

.issue-delay {
  --accent: #ff6669;
}

.issue-uncertainty {
  --accent: #ff774e;
}

.issue-rework {
  --accent: #f4c82a;
}

.issue-burden {
  --accent: #ff5f62;
}

.intro-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #181b2a;
  z-index: 4;
}

.intro-copy span {
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 750;
  letter-spacing: -.03em;
}

.intro-copy strong {
  margin-top: 2px;
  color: #233fa7;
  font-size: clamp(16px, 1.1vw, 21px);
}

.submission-copy {
  position: relative;
  margin: 0;
  max-width: 640px;
  text-align: center;
  color: #666b79;
  font-size: clamp(12px, 1.2vw, 18px);
  line-height: 1.48;
  font-weight: 430;
  z-index: 3;
}

.product-scene {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  margin: 2rem 0;
}

.product-lockup {
  position: relative;
  /* display: grid; */
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 7px;
  color: #153083;
  text-align: center;
}

.product-mini-mark {
  width: 27px;
  height: 27px;
}

.product-mini-mark svg {
  width: 100%;
  height: 100%;
}

.product-lockup strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.product-lockup p {
  grid-column: 1 / -1;
  margin: 7px 0 0;
  color: #62697b;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 450;
}

.laptop {
  position: relative;
  width: min(720px, 69vw);
}

.laptop-screen {
  position: relative;
  width: 86%;
  margin: 0 auto;
  aspect-ratio: 16 / 9.2;
  padding: 9px;
  border: 5px solid #16171c;
  border-bottom-width: 8px;
  border-radius: 17px 17px 7px 7px;
  background: #111216;
  box-shadow: 0 24px 48px rgba(29, 31, 52, .18);
  overflow: hidden;
}

.laptop-camera {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: #3d3e45;
  z-index: 4;
}

.app-window {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
  background: #f7f7ff;
  border: 1px solid #e5e7f4;
}

.app-topbar {
  height: 32px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #e9ebf4;
}

.app-wordmark {
  font-size: 8px;
  font-weight: 700;
  color: #303654;
}

.app-wordmark span {
  color: #2b49d3;
}

.app-actions {
  display: flex;
  gap: 4px;
}

.app-actions i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd0e3;
}

.app-body {
  height: calc(100% - 32px);
  display: grid;
  grid-template-columns: 102px 1fr;
}

.app-sidebar {
  padding: 14px 9px;
  position: relative;
  background: rgba(255, 255, 255, .82);
  border-right: 1px solid #e5e8f2;
}

.side-item {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 7px;
  border-radius: 5px;
  color: #8187a1;
  font-size: 7px;
  margin-bottom: 6px;
}

.side-item.active {
  color: #2946c7;
  background: #f0f1ff;
  font-weight: 700;
}

.side-item span {
  font-size: 8px;
}

.side-bottom {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #566080;
  font-size: 6px;
}

.tiny-logo {
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #263fc4;
  color: #fff;
  font-weight: 800;
  font-size: 7px;
}

.app-main {
  position: relative;
  overflow: hidden;
  padding: 19px 22px;
}

.app-heading {
  color: #252b4d;
  font-size: 11px;
  font-weight: 760;
  text-align: center;
}

.app-tabs {
  width: 160px;
  height: 24px;
  margin: 10px auto 14px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3px;
  border-radius: 7px;
  background: rgba(235, 237, 249, .9);
  color: #9a9fb2;
  font-size: 6px;
}

.app-tabs b {
  height: 18px;
  min-width: 68px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #fff;
  color: #3947a0;
  box-shadow: 0 2px 6px rgba(51, 55, 112, .08);
}

.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.upload-card {
  min-height: 105px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid #daddf2;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 18px rgba(80, 82, 151, .05);
  color: #30375b;
}

.upload-card.verified {
  background: rgba(247, 255, 250, .7);
  border-color: #c7ead6;
}

.upload-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #e9e9ff;
  color: #3f47cb;
  font-size: 14px;
  margin-bottom: 6px;
}

.verified .upload-icon {
  background: #e1f8e9;
  color: #1ebd67;
}

.upload-card strong {
  font-size: 7.5px;
}

.upload-card small {
  margin-top: 4px;
  color: #9a9fb2;
  font-size: 5.5px;
}

.upload-card button {
  margin-top: 9px;
  height: 17px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: #4436b8;
  color: #fff;
  font-size: 5.5px;
}

.confidence-bar {
  position: relative;
  z-index: 2;
  width: 52%;
  height: 17px;
  margin: 11px auto 0;
  border-radius: 9px;
  background: rgba(205, 244, 219, .86);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #229154;
  font-size: 5.5px;
}

.confidence-bar span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #20bf6b;
}

.soft-blur {
  position: absolute;
  width: 120px;
  height: 85px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: .35;
}

.blur-green {
  left: 70px;
  bottom: -28px;
  background: #72e39f;
}

.blur-violet {
  right: 12px;
  bottom: -22px;
  background: #615dc9;
}

.laptop-base {
  position: relative;
  width: 100%;
  height: 19px;
  margin-top: -2px;
  border-radius: 2px 2px 13px 13px;
  background: linear-gradient(180deg, #d7d7d9 0%, #a9aaae 42%, #e9e9ea 57%, #98999d 100%);
  box-shadow: inset 0 1px 0 #fff;
}

.laptop-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 17%;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px;
  background: #8f9094;
}

.laptop-base span {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -4px;
  height: 5px;
  border-radius: 0 0 50% 50%;
  background: #8b8c90;
  filter: blur(.2px);
}

.device-shadow {
  width: 84%;
  height: 16px;
  margin: -1px auto 0;
  border-radius: 50%;
  background: rgba(42, 44, 58, .2);
  filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4.8vw, 86px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b91a7;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: opacity .25s ease;
  z-index: 12;
}

.scroll-cue i {
  position: relative;
  width: 19px;
  height: 30px;
  border: 1px solid #c7cada;
  border-radius: 11px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 6px;
  border-radius: 3px;
  background: #717993;
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}

@keyframes wheel {

  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: .35;
  }

  45% {
    transform: translate(-50%, 8px);
    opacity: 1;
  }
}

.after-story {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  text-align: center;
  color: #f8faff;
  background:
    radial-gradient(75% 140% at 50% -20%, rgba(62, 92, 255, .54), transparent 55%),
    linear-gradient(180deg, #111a48, #09102b);
}

.after-story>div {
  max-width: 850px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  color: #97a9ff;
  font-weight: 750;
}

.after-story h2 {
  margin: 18px 0;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.after-story p {
  margin: 0;
  color: #abb4d7;
  font-size: 15px;
}

.laptop img {
  height: 45vh;
}

.laptop {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.boster {
  position: relative;
  /* width: min(580px, 92%);
  max-width: 580px; */
  text-align: center;
  z-index: 6;
}

.flow-track {
  margin-top: 2rem;
}

form.demo-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mb-md-0.mb-2.boxter,
.mt-md-0.mt-5.mb-md-0.mb-5.boxter {
  width: 50%;
}

.whiteLogo {
  width: 10%;
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    padding: 0 20px;
  }

  .ethosh-mark,
  .ethosh-name,
  .brand-divider {
    display: none;
  }

  .flow-shell {
    width: 1120px;
    transform: translate(-50%, -46%) scale(.74);
  }

  .issue-layer {
    transform: scale(.78);
    transform-origin: center 50%;
  }

  .laptop {
    width: 88vw;
  }

  .ntextimt {
    flex-wrap: wrap;
  }

  .mb-md-0.mb-2.boxter,
  .mt-md-0.mt-5.mb-md-0.mb-5.boxter {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .scrolly {
    height: 560vh;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .demo-button {
    min-width: 92px;
    padding: 0 11px;
    font-size: 10px;
  }

  .flow-shell {
    transform: translate(-50%, -47%) scale(.56);
  }

  .issue-layer {
    transform: scale(.58);
  }

  .submission-copy {
    width: 92%;
    top: 70%;
    font-size: 12px;
  }

  .intro-copy {
    top: 75%;
  }

  .product-lockup {
    top: 6%;
  }

  .laptop {
    top: 34%;
    width: 96vw;
  }

  .scroll-cue span {
    display: none;
  }

  .after-story h2 {
    font-size: 38px;
  }
}

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

  .scroll-cue i::after {
    animation: none;
  }
}

.formobilePortrait {
  display: none;
}

.ambient-right {
  display: none;
}

@media screen and (max-width:1025px) and (orientation:portrait) {
  .story-area {
    display: none;
  }

  .formobilePortrait {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    flex-direction: column;
  }

  .scrolly {
    height: auto;
  }

  .stage {
    height: unset;
  }

  .laptop img {
    height: 40vh;
  }

  .quote-banner-section {
    min-height: auto;
  }

  .adesktop {
    display: none;
  }

  .final-cta-section {
    min-height: 60vh;
  }

  .final-cta-logo img {
    width: auto;
  }

  .quote-banner-section {
    border-bottom: 1px solid var(--clr-cta-gradient-start);
  }

  .quote-banner-text {
    font-size: 18px;
  }

  .final-cta-heading {
    font-size: 32px;
  }

  .final-cta-logo {

    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
  }

  .boxter {
    padding: 3rem;
  }

  .quote-banner-section {
    padding-top: 8rem;
  }

  .quote-banner-text {
    text-align: center;
  }

  .final-cta-text {
    text-align: center;
  }

  .mb-md-0.mb-2.boxter,
  .mt-md-0.mt-5.mb-md-0.mb-5.boxter {
    width: 100%;
  }
}

@media screen and (max-width: 600px) and (orientation: portrait) {
  .boxter {
    padding: 1rem 1rem;
  }

  /* .brand-logo--ethosh {
    height: 23px;
} */
  .brand-logo {
    height: 34px;
    width: auto;
    display: block;
    /* width: 70%; */
  }

  img.brand-logo.brand-logo--ethosh {
    height: 20px;
  }

  .brand-group {
    gap: 1rem;
  }

  .video-showcase-section {
    margin-left: 1rem;
  }

  .hero-heading-1 {
    margin-top: 1rem;
  }

  .hero-heading-2 {
    margin-top: 1rem;
  }
}