@font-face {
  font-family: "Noto Sans Tana";
  src: url("/marketing-assets/fonts/noto-sans-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20AC;
}

@font-face {
  font-family: "Noto Sans Tana";
  src: url("/marketing-assets/fonts/noto-sans-cyrillic.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  unicode-range: U+0400-052F, U+2DE0-2DFF, U+A640-A69F;
}

@font-face {
  font-family: "Noto Sans Georgian Tana";
  src: url("/marketing-assets/fonts/noto-sans-georgian-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Noto Sans Georgian Tana";
  src: url("/marketing-assets/fonts/noto-sans-georgian-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Noto Sans Georgian Tana";
  src: url("/marketing-assets/fonts/noto-sans-georgian-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  color-scheme: light;
  --paper: #f7f4ee;
  --paper-strong: #fffdf9;
  --sky: #dff2f3;
  --sky-strong: #a9d8df;
  --sand: #eadfce;
  --coral: #ff6b5d;
  --coral-dark: #b23b34;
  --graphite: #1d2832;
  --graphite-soft: #41505b;
  --line: #c9d1d1;
  --white: #ffffff;
  --header-height: 76px;
  --shell: min(1520px, calc(100vw - 64px));
  font-family: "Noto Sans Tana", "Noto Sans", Arial, sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity;
}

:root:lang(ka) {
  font-family: "Noto Sans Georgian Tana", "Noto Sans Georgian", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--paper);
}

body {
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--graphite);
  background: var(--white);
  border: 2px solid var(--graphite);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #006b76;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  min-height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding: env(safe-area-inset-top, 0px) max(24px, calc((100vw - 1520px) / 2)) 0;
  color: var(--graphite);
  background: var(--paper-strong);
  border-bottom: 1px solid rgb(29 40 50 / 0.12);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header[data-header-tone="photo"] {
  color: var(--white);
  background: linear-gradient(180deg, rgb(16 28 37 / 0.72), rgb(16 28 37 / 0));
  border-bottom-color: transparent;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 1.16rem;
  font-weight: 760;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.site-header[data-header-tone="photo"] .brand img,
.brand--footer img {
  filter: brightness(0) invert(1);
}

.site-navigation {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.8vw, 12px);
}

.site-navigation a,
.language-switch a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: inherit;
  font-size: 0.87rem;
  font-weight: 620;
  text-decoration: none;
  white-space: nowrap;
}

.site-navigation a::after,
.language-switch a::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-navigation a:hover::after,
.site-navigation a[aria-current="location"]::after,
.language-switch a:hover::after,
.language-switch a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-login {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.header-login:hover {
  background: var(--sky);
}

.language-switch {
  display: flex;
}

.language-switch a {
  min-width: 48px;
  padding-inline: 7px;
  font-size: 0.75rem;
}

.language-switch a::after {
  right: 7px;
  left: 7px;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-weight: 650;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button i {
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  position: absolute;
  left: 0;
}

.menu-button i::before { transform: translateY(-7px); }
.menu-button i::after { transform: translateY(7px); }
.menu-button[aria-expanded="true"] i { background: transparent; }
.menu-button[aria-expanded="true"] i::before { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] i::after { transform: rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.button--coral {
  color: #191f24;
  background: var(--coral);
  border-color: #ff8a7f;
  box-shadow: 0 10px 24px rgb(217 77 66 / 0.24);
}

.button--coral:hover:not(:disabled) {
  background: #ff7a6e;
  box-shadow: 0 14px 30px rgb(217 77 66 / 0.32);
}

.button--light {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--white);
}

.button--large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 1.06rem;
}

.scene {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  scroll-margin-top: var(--header-height);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scene-photo,
.scene-wash,
.hero-scrim {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.scene-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position, center);
}

.scene-wash {
  z-index: -2;
}

.scene-wash--dark {
  background: linear-gradient(90deg, rgb(20 29 35 / 0.9) 0%, rgb(20 29 35 / 0.68) 48%, rgb(20 29 35 / 0.35) 100%);
}

.scene-wash--paper {
  background: linear-gradient(180deg, rgb(247 244 238 / 0.96), rgb(247 244 238 / 0.89));
}

.scene-wash--paper-strong {
  background: rgb(247 244 238 / 0.955);
}

.scene-wash--sky {
  background: linear-gradient(110deg, rgb(223 242 243 / 0.96) 8%, rgb(247 244 238 / 0.89) 74%);
}

.scene-wash--blue {
  background: linear-gradient(90deg, rgb(15 43 61 / 0.94) 0%, rgb(15 43 61 / 0.82) 50%, rgb(15 43 61 / 0.52) 100%);
}

.scene-wash--night {
  background: linear-gradient(90deg, rgb(12 26 37 / 0.95), rgb(12 26 37 / 0.72));
}

.scene-wash--sand {
  background: linear-gradient(92deg, rgb(247 244 238 / 0.97) 0%, rgb(234 223 206 / 0.91) 52%, rgb(234 223 206 / 0.52) 100%);
}

.scene-wash--sunset {
  background: linear-gradient(90deg, rgb(19 31 39 / 0.87) 0%, rgb(19 31 39 / 0.54) 54%, rgb(19 31 39 / 0.22) 100%);
}

.scene-shell {
  position: relative;
  display: grid;
  width: var(--shell);
  min-height: 100svh;
  margin-inline: auto;
  padding-block: calc(var(--header-height) + clamp(30px, 5vh, 64px)) clamp(38px, 6vh, 72px);
}

.scene-copy {
  min-width: 0;
  width: 100%;
  container-type: inline-size;
  max-width: 760px;
}

.scene-copy h2 {
  font-size: clamp(2rem, 10cqi, 4.6rem);
  line-height: 1.08;
}

.scene-copy--compact {
  max-width: 680px;
}

.scene-copy--center {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.scene-copy--light {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: #006b76;
  font-size: 0.77rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow--coral {
  color: #ff8a7f;
}

.eyebrow--light {
  color: var(--white);
}

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

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8.2vw, 8.8rem);
  font-weight: 630;
  letter-spacing: -0.066em;
  line-height: 0.86;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4.7vw, 5.3rem);
  font-weight: 610;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.scene-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.55;
}

.scene-copy--light > p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.86);
}

.hero-scrim {
  z-index: -2;
  background: linear-gradient(90deg, rgb(19 30 38 / 0.76) 0%, rgb(19 30 38 / 0.34) 58%, rgb(19 30 38 / 0.12) 100%), linear-gradient(180deg, rgb(19 30 38 / 0.08) 48%, rgb(19 30 38 / 0.48) 100%);
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.hero-copy {
  max-width: 900px;
  color: var(--white);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin-bottom: 32px;
  color: rgb(255 255 255 / 0.9);
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
}

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

.reference-note {
  display: grid;
  min-width: 260px;
  align-self: end;
  gap: 2px;
  margin: 0 0 4px;
  padding-left: 20px;
  color: var(--white);
  border-left: 3px solid var(--coral);
}

.reference-note span,
.reference-note small {
  color: rgb(255 255 255 / 0.72);
  font-size: 0.76rem;
}

.reference-note strong {
  font-size: 1.24rem;
}

.split-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 46px 8vw;
}

.fragment-field {
  position: relative;
  min-height: min(52vh, 510px);
}

.fragment-field > span {
  position: absolute;
  display: grid;
  width: clamp(110px, 10vw, 164px);
  aspect-ratio: 1;
  align-content: center;
  gap: 8px;
  place-items: center;
  color: var(--graphite);
  background: var(--paper-strong);
  border: 1px solid rgb(255 255 255 / 0.56);
  box-shadow: 0 22px 56px rgb(0 0 0 / 0.22);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 760;
  transform: translate(calc((var(--fragment) - 2) * 72px), calc((var(--fragment) - 2) * 15px)) rotate(calc((var(--fragment) - 2) * 5deg));
}

.fragment-field > span img {
  width: clamp(48px, 5.5vw, 72px);
  height: auto;
}

.fragment-field > span:nth-child(1) { top: 7%; left: 33%; }
.fragment-field > span:nth-child(2) { top: 31%; left: 8%; background: var(--sky); }
.fragment-field > span:nth-child(3) { top: 44%; left: 45%; background: #fff2ee; }
.fragment-field > span:nth-child(4) { right: 3%; bottom: 8%; background: var(--sand); }
.fragment-field > span:nth-child(5) { bottom: 2%; left: 22%; }

.fragment-question {
  position: absolute;
  top: 29%;
  right: 16%;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  color: var(--graphite);
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 20px 44px rgb(0 0 0 / 0.26);
  font-size: 3.4rem;
  font-weight: 500;
}

.pain-line {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: var(--graphite);
  background: rgb(255 255 255 / 0.3);
  border: 1px solid rgb(255 255 255 / 0.35);
  list-style: none;
}

.pain-line li {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--paper-strong);
}

.pain-line span {
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 780;
}

.pain-line strong {
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
}

.product-layout {
  grid-template-columns: minmax(300px, 0.56fr) minmax(620px, 1.44fr);
  align-items: center;
  gap: 5vw;
}

.product-stage {
  min-width: 0;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 4px;
  margin: 0 0 12px;
  padding: 4px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  width: fit-content;
}

.product-tabs button {
  position: relative;
  min-height: 48px;
  padding: 8px 18px;
  color: var(--graphite-soft);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 680;
}

.product-tabs button[aria-selected="true"] {
  color: var(--graphite);
  background: var(--sky);
}

.screen-deck {
  position: relative;
}

.screen-deck figure {
  margin: 0;
}

.screen-frame {
  overflow: hidden;
  background: #eef2f6;
  border: 1px solid #aeb9c4;
  box-shadow: 0 26px 70px rgb(29 40 50 / 0.22);
}

.screen-frame::before {
  display: block;
  height: 26px;
  content: "";
  background: radial-gradient(circle at 14px 13px, #ff6b5d 0 4px, transparent 5px), radial-gradient(circle at 30px 13px, #f0bf68 0 4px, transparent 5px), radial-gradient(circle at 46px 13px, #73b5ae 0 4px, transparent 5px), #ffffff;
  border-bottom: 1px solid #d7dde5;
}

.screen-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.72;
  object-fit: cover;
  object-position: top left;
}

.screen-deck figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 16px;
  padding: 16px 18px;
  color: var(--graphite);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-top: 0;
}

.screen-deck figcaption span {
  grid-row: 1 / 3;
  align-self: center;
  padding: 5px 8px;
  color: #5b4c31;
  background: #f7e7bd;
  font-size: 0.68rem;
  font-weight: 720;
  text-transform: uppercase;
}

.screen-deck figcaption strong {
  font-size: 1rem;
}

.screen-deck figcaption small {
  color: var(--graphite-soft);
}

.flow-layout {
  align-content: center;
  gap: clamp(46px, 8vh, 90px);
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-track::before {
  position: absolute;
  top: 33px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: var(--graphite);
  opacity: 0.32;
}

.flow-track li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 20px;
  padding-inline: 14px;
  text-align: center;
}

.flow-track li > span {
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--graphite);
  background: var(--paper-strong);
  border: 2px solid var(--graphite);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 780;
}

.flow-track li:nth-child(4) > span {
  background: var(--coral);
}

.flow-track li div {
  display: grid;
  gap: 6px;
}

.flow-track strong {
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

.flow-track small {
  max-width: 25ch;
  color: var(--graphite-soft);
  font-size: 0.9rem;
}

.ai-layout {
  grid-template-columns: minmax(330px, 0.72fr) minmax(560px, 1.28fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 42px 6vw;
}

.guardrail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 26px !important;
  color: var(--white) !important;
  font-size: 0.92rem !important;
  font-weight: 650;
}

.guardrail span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: var(--graphite);
  background: var(--coral);
  border-radius: 50%;
}

.ai-visual {
  position: relative;
  min-height: min(54vh, 520px);
}

.ai-screen {
  position: absolute;
  inset: 4% 0 15% 5%;
  overflow: hidden;
  background: #eff3f8;
  border: 7px solid var(--paper-strong);
  box-shadow: 0 28px 70px rgb(0 0 0 / 0.28);
}

.ai-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% top;
}

.demo-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: var(--graphite);
  background: #f7e7bd;
  font-size: 0.68rem;
  font-weight: 760;
  text-transform: uppercase;
}

.assistant-card {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: min(420px, 72%);
  padding: 22px;
  color: var(--graphite);
  background: var(--paper-strong);
  border: 2px solid var(--graphite);
  box-shadow: 14px 14px 0 var(--coral);
}

.assistant-card > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 780;
}

.assistant-card > p span {
  color: var(--coral-dark);
  font-size: 1.25rem;
}

.assistant-card blockquote {
  margin: 0 0 12px;
  padding: 11px 13px;
  background: var(--sky);
  font-size: 0.9rem;
}

.assistant-card > div {
  font-size: 0.9rem;
  line-height: 1.5;
}

.ai-capabilities {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  background: rgb(255 255 255 / 0.34);
  border: 1px solid rgb(255 255 255 / 0.34);
  list-style: none;
}

.ai-capabilities li {
  display: grid;
  min-height: 136px;
  align-content: start;
  gap: 5px;
  padding: 18px;
  color: var(--graphite);
  background: var(--paper-strong);
}

.ai-capabilities span {
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.ai-capabilities strong {
  font-size: 0.96rem;
}

.ai-capabilities small {
  color: var(--graphite-soft);
  font-size: 0.78rem;
  line-height: 1.42;
}

.feature-layout {
  grid-template-columns: minmax(260px, 0.42fr) minmax(700px, 1.58fr);
  align-items: center;
  gap: 4vw;
}

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

.feature-group {
  min-height: 220px;
  padding: 18px;
  color: var(--graphite);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgb(29 40 50 / 0.08);
}

.feature-group--ai {
  grid-column: span 2;
  background: var(--sky);
  border: 2px solid var(--graphite);
  box-shadow: 10px 10px 0 var(--coral);
}

.feature-group:nth-child(6) {
  grid-column: span 2;
}

.feature-group header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.feature-group header span {
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.feature-group h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.feature-group ul {
  display: grid;
  gap: 9px;
  padding: 14px 0 0;
  margin: 0;
  list-style: none;
}

.feature-group li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 7px;
  color: var(--graphite-soft);
  font-size: 0.79rem;
  line-height: 1.35;
}

.feature-group li i {
  color: #006b76;
  font-style: normal;
  font-weight: 800;
}

.trust-layout {
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 8vw;
}

.receipt-visual {
  padding: clamp(22px, 3vw, 38px);
  color: var(--graphite);
  background: var(--paper-strong);
  border: 2px solid var(--graphite);
  box-shadow: 16px 16px 0 var(--sky-strong);
}

.receipt-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 1px 14px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--graphite);
}

.receipt-head > span {
  display: grid;
  width: 48px;
  height: 48px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--graphite);
  background: var(--coral);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
}

.receipt-head strong {
  font-size: 1.16rem;
}

.receipt-head small {
  color: var(--graphite-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.receipt-visual dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.receipt-visual dl > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.receipt-visual dl > div:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.receipt-visual dl > div:nth-child(even) {
  padding-left: 20px;
}

.receipt-visual dt {
  color: var(--graphite-soft);
  font-size: 0.75rem;
}

.receipt-visual dd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 0;
  font-weight: 700;
}

.receipt-visual dd span {
  color: #16766f;
  font-size: 0.72rem;
}

.receipt-visual > p {
  margin: 20px 0 0;
  color: var(--graphite-soft);
  font-size: 0.78rem;
}

.onboarding-layout {
  grid-template-columns: minmax(320px, 0.84fr) minmax(560px, 1.16fr);
  align-items: center;
  gap: 8vw;
}

.onboarding-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  list-style: none;
  box-shadow: 0 22px 60px rgb(29 40 50 / 0.14);
}

.onboarding-steps li {
  display: grid;
  min-height: 94px;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.onboarding-steps li:last-child {
  border-bottom: 0;
}

.onboarding-steps span {
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.onboarding-steps strong {
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.contact-layout {
  align-content: end;
  gap: clamp(46px, 10vh, 110px);
  color: var(--white);
}

.contact-lockup {
  max-width: 950px;
}

.contact-lockup h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 6.8vw, 7.2rem);
}

.contact-lockup > p:not(.eyebrow) {
  max-width: 54ch;
  margin-bottom: 28px;
  color: rgb(255 255 255 / 0.86);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.contact-lockup > small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: rgb(255 255 255 / 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 0.42);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
}

.site-footer nav a {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  color: rgb(255 255 255 / 0.84);
  font-size: 0.82rem;
  font-weight: 620;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer > p {
  margin: 0;
  color: rgb(255 255 255 / 0.7);
  font-size: 0.78rem;
}

.contact-dialog {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  max-height: min(920px, calc(100dvh - 32px));
  padding: 0;
  overflow: hidden;
  color: var(--graphite);
  background: var(--paper-strong);
  border: 2px solid var(--graphite);
  box-shadow: 18px 18px 0 var(--coral);
}

.contact-dialog::backdrop {
  background: rgb(15 28 37 / 0.78);
}

.dialog-shell {
  max-height: min(916px, calc(100dvh - 36px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dialog-header {
  position: sticky;
  z-index: 3;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 28px;
  padding: 28px 32px 22px;
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.dialog-header h2 {
  max-width: 18ch;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.dialog-header > div > p:last-child {
  max-width: 68ch;
  margin: 0;
  color: var(--graphite-soft);
}

.dialog-close {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--graphite);
  background: var(--sky);
  border: 1px solid var(--graphite);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.intake-state,
.intake-closed {
  margin: 28px 32px;
  padding: 22px;
  background: var(--sky);
  border: 1px solid #9bbfc3;
}

.intake-state {
  display: flex;
  align-items: center;
  gap: 12px;
}

.intake-state p,
.intake-closed p,
.intake-closed h3 {
  margin: 0;
}

.intake-closed h3 {
  margin-bottom: 8px;
}

.state-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--coral);
  border-radius: 50%;
}

.intake-open {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  padding: 30px 32px 38px;
}

.intake-disclosure {
  align-self: start;
  padding: 20px;
  background: var(--sky);
  border: 1px solid #9bbfc3;
}

.intake-disclosure h3 {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.intake-disclosure dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.intake-disclosure dt {
  color: var(--graphite-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.intake-disclosure dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-size: 0.86rem;
  font-weight: 620;
}

.application-form,
.form-grid,
.module-grid {
  display: grid;
}

.application-form {
  gap: 20px;
}

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

.field-wide {
  grid-column: 1 / -1;
}

.form-grid label,
.application-form > label,
.field-block {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.application-form label > span,
.application-form legend,
.human-check > p {
  font-size: 0.82rem;
  font-weight: 680;
}

.application-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid #9daab1;
  border-radius: 0;
}

.application-form textarea {
  min-height: 96px;
  resize: vertical;
}

.application-form fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.application-form legend {
  margin-bottom: 9px;
}

.module-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.check-card,
.privacy-check {
  display: flex !important;
  min-height: 50px;
  grid-template-columns: 22px 1fr;
  align-items: flex-start;
  gap: 10px !important;
  padding: 11px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
}

.check-card input,
.privacy-check input {
  width: 21px;
  min-width: 21px;
  height: 21px;
  min-height: 21px;
  margin: 1px 0 0;
  accent-color: #006b76;
}

.check-card span,
.privacy-check span {
  font-size: 0.8rem !important;
  font-weight: 560 !important;
}

.privacy-check a {
  color: #006b76;
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.human-check {
  display: grid;
  gap: 8px;
}

.human-check p {
  margin: 0;
}

altcha-widget {
  display: block;
  max-width: 100%;
  --altcha-checkbox-size: 22px;
  --altcha-color-base: var(--white);
  --altcha-color-base-content: var(--graphite);
  --altcha-max-width: 360px;
}

.human-check .altcha-main {
  min-height: 48px;
}

.form-submit {
  justify-self: start;
}

.form-status {
  padding: 14px 16px;
  background: var(--sky);
  border-left: 4px solid #006b76;
  font-weight: 620;
}

.form-status[data-kind="error"] {
  background: #fff0ed;
  border-left-color: var(--coral-dark);
}

.form-status[data-kind="success"] {
  background: #e7f3ef;
  border-left-color: #16766f;
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 18px;
  color: var(--graphite);
  background: var(--paper-strong);
  border: 2px solid var(--graphite);
}

.document-body {
  min-height: 100svh;
  background: var(--paper);
}

.document-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.document-languages {
  display: flex;
  gap: 2px;
}

.document-languages a {
  display: grid;
  min-width: 48px;
  min-height: 48px;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.document-languages a[aria-current="page"] {
  text-decoration: underline 2px var(--coral);
  text-underline-offset: 6px;
}

.document-main {
  container-type: inline-size;
  width: min(calc(100% - 40px), 920px);
  margin-inline: auto;
  padding-block: clamp(48px, 8vw, 96px);
}

.document-back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-bottom: 44px;
  color: #006b76;
  font-weight: 680;
  text-underline-offset: 4px;
}

.document-main h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(2rem, 8cqi, 4.8rem);
  color: var(--graphite);
}

.document-lead {
  max-width: 68ch;
  margin-bottom: 54px;
  color: var(--graphite-soft);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.document-main section {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.document-main section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
}

.document-main section p {
  max-width: 72ch;
  margin-bottom: 0;
  color: var(--graphite-soft);
  line-height: 1.7;
}

.document-main dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.document-main dl > div {
  padding: 18px;
  background: var(--paper-strong);
}

.document-main dt {
  color: var(--graphite-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.document-main dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
  font-weight: 650;
}

@media (max-width: 640px) {
  .document-header {
    padding-inline: 16px;
  }

  .document-languages a:not([aria-current="page"]) {
    display: none;
  }

  .document-main {
    width: calc(100% - 28px);
  }

  .document-main dl {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1100px) and (min-height: 700px) and (prefers-reduced-motion: no-preference) {
  :root {
    scroll-snap-type: y mandatory;
  }
}

@media (hover: hover) and (pointer: fine) {
  .fragment-field > span:hover,
  .feature-group:hover {
    transform: translateY(-4px);
  }

  .fragment-field > span {
    transition: transform 200ms ease;
  }

  .fragment-field > span:hover {
    transform: translate(calc((var(--fragment) - 2) * 72px), calc((var(--fragment) - 2) * 15px - 4px)) rotate(calc((var(--fragment) - 2) * 5deg));
  }

  .feature-group {
    transition: transform 200ms ease, box-shadow 200ms ease;
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 40px, 1100px);
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
    padding-inline: 20px;
  }

  .menu-button {
    display: flex;
    justify-self: end;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 12px 20px 18px;
    color: var(--graphite);
    background: var(--paper-strong);
    border-bottom: 1px solid var(--line);
  }

  .site-header[data-menu-open="true"] .site-navigation {
    display: grid;
  }

  .site-navigation a {
    justify-content: flex-start;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .product-layout,
  .feature-layout {
    grid-template-columns: minmax(250px, 0.48fr) minmax(540px, 1.52fr);
    gap: 3vw;
  }

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

  .feature-group--ai,
  .feature-group:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 32px);
    scroll-snap-type: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    gap: 12px;
    padding-inline: 16px;
  }

  .brand span {
    display: none;
  }

  .site-header .brand {
    min-width: 48px;
    justify-content: center;
  }

  .menu-button {
    grid-column: 3;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .language-switch a {
    min-width: 48px;
  }

  .scene {
    min-height: 100svh;
    overflow: hidden;
  }

  .scene-shell {
    min-height: 100svh;
    padding-block: calc(var(--header-height) + 34px) 46px;
  }

  .hero-layout,
  .split-layout,
  .product-layout,
  .ai-layout,
  .feature-layout,
  .trust-layout,
  .onboarding-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    align-content: center;
    gap: 32px;
  }

  h1 {
    font-size: clamp(3.4rem, 14vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 8vw, 4.4rem);
  }

  .reference-note {
    justify-self: start;
  }

  .fragment-field {
    min-height: 380px;
  }

  .pain-line,
  .ai-capabilities {
    grid-column: auto;
  }

  .product-stage {
    align-self: start;
  }

  .screen-frame img {
    aspect-ratio: 1.48;
  }

  .ai-visual {
    min-height: 410px;
  }

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

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

  .feature-group--ai,
  .feature-group:nth-child(6) {
    grid-column: span 2;
  }

  .feature-group {
    min-height: 204px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: flex-start;
  }

  .brand--footer {
    grid-row: 2;
  }

  .brand--footer span {
    display: inline;
  }

  .site-footer > p {
    grid-row: 2;
  }

  .intake-open {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .language-switch a:not([aria-current="page"]) {
    display: none;
  }

  .language-switch a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .scene {
    min-height: 100svh;
    overflow: visible;
  }

  .scene-shell {
    min-height: 100svh;
    padding-block: calc(var(--header-height) + 30px) 38px;
  }

  .hero-layout {
    align-content: end;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .reference-note {
    min-width: 0;
  }

  .problem-scene .scene-shell,
  .product-scene .scene-shell,
  .ai-scene .scene-shell,
  .features-scene .scene-shell,
  .onboarding-scene .scene-shell {
    align-content: start;
  }

  .fragment-field {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
  }

  .fragment-field > span {
    position: static;
    width: 100%;
    min-height: 108px;
    padding: 10px 4px;
    transform: none;
  }

  .fragment-field > span:nth-child(1) { left: 26%; }
  .fragment-field > span:nth-child(2) { left: 4%; }
  .fragment-field > span:nth-child(3) { left: 39%; }
  .fragment-field > span:nth-child(4) { right: 2%; }
  .fragment-field > span:nth-child(5) { left: 16%; }

  .fragment-question {
    position: static;
    place-self: center;
    width: 76px;
    height: 76px;
    font-size: 2.6rem;
  }

  .pain-line,
  .ai-capabilities,
  .feature-atlas,
  .receipt-visual dl,
  .form-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .pain-line li {
    min-height: 76px;
  }

  .product-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .product-tabs button {
    flex: 1 0 auto;
    padding-inline: 13px;
  }

  .screen-frame img {
    aspect-ratio: 1.1;
  }

  .screen-deck figcaption {
    grid-template-columns: 1fr;
  }

  .screen-deck figcaption span {
    grid-row: auto;
    justify-self: start;
  }

  .flow-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-track::before {
    top: 34px;
    bottom: 34px;
    left: 33px;
    width: 2px;
    height: auto;
  }

  .flow-track li {
    grid-template-columns: 68px 1fr;
    justify-items: start;
    gap: 18px;
    padding: 0 0 18px;
    text-align: left;
  }

  .flow-track li div {
    align-self: center;
  }

  .flow-track small {
    max-width: none;
  }

  .ai-visual {
    min-height: 360px;
  }

  .ai-screen {
    inset: 0 0 17% 0;
  }

  .assistant-card {
    right: 0;
    width: 92%;
    padding: 16px;
    box-shadow: 8px 8px 0 var(--coral);
  }

  .ai-capabilities li {
    min-height: 0;
  }

  .feature-group--ai,
  .feature-group:nth-child(6) {
    grid-column: auto;
  }

  .feature-group {
    min-height: 0;
  }

  .receipt-visual {
    box-shadow: 8px 8px 0 var(--sky-strong);
  }

  .receipt-visual dl > div:nth-child(odd),
  .receipt-visual dl > div:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .onboarding-steps li {
    grid-template-columns: 42px 1fr;
    padding-inline: 17px;
  }

  .contact-layout {
    gap: 46px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    display: grid;
  }

  .brand--footer,
  .site-footer > p {
    grid-row: auto;
  }

  .contact-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    box-shadow: 7px 7px 0 var(--coral);
  }

  .dialog-shell {
    max-height: calc(100dvh - 20px);
  }

  .dialog-header {
    gap: 14px;
    padding: 22px 18px 18px;
  }

  .dialog-header h2 {
    font-size: 2.1rem;
  }

  .intake-state,
  .intake-closed {
    margin: 20px 18px;
  }

  .intake-open {
    padding: 20px 18px 28px;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .scene-shell {
    padding-block: calc(var(--header-height) + 22px) 28px;
  }

  h1 { font-size: clamp(3.2rem, 7.2vw, 7rem); }
  h2 { font-size: clamp(2.1rem, 4.2vw, 4.5rem); }
  .ai-visual { min-height: 390px; }
  .ai-capabilities li { min-height: 112px; padding: 14px; }
  .feature-group { min-height: 184px; padding: 14px; }
  .feature-group ul { gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .scene-wash,
  .hero-scrim {
    background: Canvas;
    opacity: 0.9;
  }

  .button,
  .feature-group,
  .receipt-visual,
  .assistant-card {
    border: 2px solid ButtonText;
  }
}
