:root {
  --ink: #0b100e;
  --ink-2: #111815;
  --plum: #211827;
  --plum-2: #2c2036;
  --paper: #efebe1;
  --chalk: #f2efe6;
  --mist: #e3ebe6;
  --mint: #4fd6a0;
  --mint-deep: #338873;
  --mint-ink: #062018;
  --cinder: #728079;
  --line: rgba(20, 27, 23, 0.17);
  --white-line: rgba(242, 239, 230, 0.15);
  --display: "SF Pro Display", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --body: "SF Pro Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --container: min(1240px, calc(100vw - 64px));
  --radius-lg: 38px;
  --radius-md: 24px;
  --shadow-phone: 0 45px 90px rgba(0, 0, 0, 0.34), 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--plum);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  background: var(--mint);
  color: var(--mint-ink);
}

.sr-only {
  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 {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--mint-ink);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--chalk);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--white-line);
  background: rgba(26, 19, 31, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 10px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  color: rgba(242, 239, 230, 0.76);
  transition: color 180ms ease;
}

.nav-links > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible {
  color: var(--chalk);
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .lang-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 46px;
  border-color: rgba(242, 239, 230, 0.38);
  color: var(--chalk);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--chalk);
  background: rgba(242, 239, 230, 0.08);
  transform: translateY(-2px);
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  background: transparent;
  color: var(--chalk);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle > span:nth-child(2) {
  top: 18px;
}

.nav-toggle > span:nth-child(3) {
  top: 27px;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 95%, rgba(79, 214, 160, 0.12), transparent 28%),
    linear-gradient(145deg, #1a131f 0%, #2b2033 55%, #1b1723 100%);
  color: var(--chalk);
}

.hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow--one {
  top: 22%;
  right: -230px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(79, 214, 160, 0.16);
  box-shadow: inset 0 0 120px rgba(79, 214, 160, 0.06);
}

.hero-glow--two {
  right: 17%;
  bottom: -180px;
  width: 430px;
  height: 430px;
  background: rgba(79, 214, 160, 0.08);
  filter: blur(80px);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: 920px;
  margin: 0 auto;
  padding-top: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 690px;
  padding-bottom: 38px;
}

.status,
.kicker,
.bento-index {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 33px;
  color: rgba(242, 239, 230, 0.67);
}

.status > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(79, 214, 160, 0.09);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 29px;
  font-size: clamp(62px, 6.25vw, 94px);
}

h1 em,
h2 em,
.final-cta p em {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 37px;
  color: rgba(242, 239, 230, 0.72);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 39px;
}

.button--mint {
  min-height: 58px;
  padding: 0 28px;
  background: var(--mint);
  color: var(--mint-ink);
  box-shadow: 0 11px 28px rgba(79, 214, 160, 0.16);
}

.button--mint:hover,
.button--mint:focus-visible {
  background: #6de1b4;
  box-shadow: 0 16px 34px rgba(79, 214, 160, 0.24);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(242, 239, 230, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  color: var(--mint);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(3px);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 0;
  color: rgba(242, 239, 230, 0.53);
  font-size: 12px;
  list-style: none;
}

.trust-list span {
  margin-right: 6px;
  color: var(--mint);
}

.hero-product {
  position: relative;
  height: 720px;
  align-self: end;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(242, 239, 230, 0.13);
  border-radius: 50%;
}

.orbit--one {
  top: 30px;
  left: 15px;
  width: 590px;
  height: 590px;
}

.orbit--two {
  top: 104px;
  left: 91px;
  width: 438px;
  height: 438px;
  border-color: rgba(79, 214, 160, 0.2);
}

.phone {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 760 / 1650;
  border: 8px solid #151318;
  border-radius: 52px;
  background: #f1f0ec;
  box-shadow: var(--shadow-phone);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 50%;
  width: 30%;
  height: 26px;
  border-radius: 999px;
  background: #050506;
  content: "";
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone--back,
.phone--front {
  position: absolute;
}

.phone--back {
  z-index: 1;
  top: 138px;
  left: -8px;
  width: 274px;
  opacity: 0.55;
  transform: rotate(-8deg);
  filter: saturate(0.8);
}

.phone--front {
  z-index: 2;
  top: 22px;
  right: 3px;
  width: 328px;
  transform: rotate(4.5deg);
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 202px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: rgba(247, 245, 239, 0.91);
  color: var(--plum);
  box-shadow: 0 18px 45px rgba(9, 7, 11, 0.24);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
}

.float-card b,
.float-card small {
  display: block;
}

.float-card b {
  font-size: 13px;
  line-height: 1.3;
}

.float-card small {
  margin-top: 2px;
  color: #6d6970;
  font-size: 10px;
}

.float-card--top {
  top: 164px;
  right: -80px;
  transform: rotate(-2deg);
}

.float-card--bottom {
  bottom: 77px;
  left: -23px;
  transform: rotate(2deg);
}

.float-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  background: #d7f5e8;
  color: var(--mint-deep);
  font-weight: 800;
}

.avatars {
  display: flex;
  padding-left: 11px;
}

.avatars i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-left: -11px;
  border: 2px solid #f7f5ef;
  border-radius: 50%;
  background: #d9d4e6;
  color: #59436b;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.avatars i:nth-child(2) {
  background: #dceee6;
  color: #2a715a;
}

.avatars i:nth-child(3) {
  background: #f7e5bd;
  color: #8b6421;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(242, 239, 230, 0.43);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 31px;
  overflow: hidden;
  background: rgba(242, 239, 230, 0.2);
}

.scroll-cue span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mint);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  60%, 100% { transform: translateY(210%); }
}

.use-cases {
  overflow: hidden;
  padding: 21px 0 20px;
  border-bottom: 1px solid rgba(6, 32, 24, 0.25);
  background: var(--mint);
  color: var(--mint-ink);
}

.use-cases-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.use-cases-track i {
  font-size: 9px;
  font-style: normal;
}

.section {
  position: relative;
  padding: 138px 0;
}

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

.section--mist {
  background:
    radial-gradient(circle at 8% 80%, rgba(79, 214, 160, 0.18), transparent 27%),
    var(--mist);
}

.section--plum {
  background: var(--plum);
  color: var(--chalk);
}

.section-shell,
.footer-shell {
  width: var(--container);
  margin: 0 auto;
}

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

.section-heading--wide {
  max-width: 970px;
}

.kicker {
  margin-bottom: 26px;
  color: var(--mint-deep);
}

.kicker--mint {
  color: var(--mint);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(47px, 5.6vw, 78px);
}

.section-heading > p:last-child {
  max-width: 580px;
  margin-bottom: 0;
  color: #5e6963;
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.step {
  position: relative;
  min-height: 385px;
  padding: 40px 43px 18px 0;
  border-right: 1px solid var(--line);
}

.step + .step {
  padding-left: 43px;
}

.step:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 60px;
  color: #79827d;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.step svg {
  width: 45px;
  height: 45px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--mint-deep);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3,
.bento-card h3 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.step p {
  max-width: 300px;
  margin-bottom: 0;
  color: #5d6862;
  font-size: 15px;
}

.showcase {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.showcase-grid {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(410px, 0.92fr) 1.08fr;
  align-items: center;
  gap: 11%;
}

.product-window {
  position: relative;
  align-self: stretch;
  min-height: 900px;
}

.product-window::before {
  position: absolute;
  top: -30px;
  left: -160px;
  width: 710px;
  height: 710px;
  border: 1px solid rgba(51, 136, 115, 0.22);
  border-radius: 50%;
  content: "";
}

.phone--showcase {
  position: absolute;
  top: 92px;
  left: 55%;
  width: 360px;
  transform: translateX(-50%) rotate(-4deg);
}

.receipt-note {
  position: absolute;
  z-index: 5;
  top: 558px;
  right: -19px;
  width: 230px;
  padding: 20px 23px;
  border: 1px solid rgba(17, 24, 21, 0.1);
  border-radius: 18px;
  background: rgba(242, 239, 230, 0.92);
  box-shadow: 0 22px 55px rgba(33, 24, 39, 0.16);
  transform: rotate(3deg);
}

.receipt-note span,
.receipt-note b {
  display: block;
}

.receipt-note span {
  margin-bottom: 5px;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.receipt-note b {
  font-size: 14px;
}

.showcase-copy {
  max-width: 650px;
  padding: 120px 0;
}

.showcase-copy h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.large-copy {
  max-width: 590px;
  margin-bottom: 50px;
  color: #526059;
  font-size: 19px;
  line-height: 1.62;
}

.feature-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li > span {
  padding-top: 4px;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 10px;
}

.feature-list b,
.feature-list small {
  display: block;
}

.feature-list b {
  margin-bottom: 3px;
  font-size: 15px;
}

.feature-list small {
  color: #66726c;
  font-size: 13px;
}

.bento-section {
  padding-bottom: 150px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 37px;
  border-radius: var(--radius-lg);
}

.bento-card > * {
  position: relative;
  z-index: 2;
}

.bento-card:nth-child(1) {
  grid-column: span 7;
}

.bento-card:nth-child(2) {
  grid-column: span 5;
}

.bento-card:nth-child(3) {
  grid-column: span 5;
}

.bento-card:nth-child(4) {
  grid-column: span 7;
}

.bento-card--mint {
  background: var(--mint);
  color: var(--mint-ink);
}

.bento-card--dark {
  background:
    radial-gradient(circle at 100% 0, rgba(79, 214, 160, 0.14), transparent 32%),
    var(--ink-2);
  color: var(--chalk);
}

.bento-card--paper {
  border: 1px solid var(--line);
  background: #f6f3eb;
}

.bento-card--line {
  border: 1px solid rgba(44, 32, 54, 0.24);
  background:
    linear-gradient(rgba(44, 32, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 32, 54, 0.035) 1px, transparent 1px),
    #ddd8e4;
  background-size: 28px 28px;
}

.bento-index {
  display: block;
  margin-bottom: 113px;
  opacity: 0.62;
}

.bento-card h3 {
  max-width: 490px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 43px);
}

.bento-card p {
  max-width: 530px;
  margin-bottom: 14px;
  opacity: 0.72;
  font-size: 15px;
}

.bento-card > small {
  display: block;
  max-width: 480px;
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid rgba(6, 32, 24, 0.18);
  font-size: 11px;
  opacity: 0.63;
}

.signal {
  position: absolute;
  z-index: 1;
  top: 48px;
  right: 44px;
  display: flex;
  height: 76px;
  align-items: end;
  gap: 9px;
}

.signal i {
  display: block;
  width: 14px;
  border: 2px solid var(--mint-ink);
  border-radius: 5px;
  opacity: 0.66;
}

.signal i:nth-child(1) { height: 18px; }
.signal i:nth-child(2) { height: 34px; }
.signal i:nth-child(3) { height: 51px; }
.signal i:nth-child(4) { height: 68px; opacity: 0.17; }

.signal b {
  position: absolute;
  top: -6px;
  right: -2px;
  font-size: 29px;
  font-weight: 400;
}

.privacy-mark {
  position: absolute;
  z-index: 1;
  top: -45px;
  right: -45px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(79, 214, 160, 0.26);
  border-radius: 50%;
}

.privacy-mark::before,
.privacy-mark::after,
.privacy-mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(79, 214, 160, 0.2);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.privacy-mark::before { width: 155px; height: 155px; }
.privacy-mark::after { width: 80px; height: 80px; }
.privacy-mark span { width: 12px; height: 12px; background: var(--mint); }

.bento-card--dark .bento-index {
  color: var(--mint);
}

.bento-card--dark h3 {
  max-width: 390px;
  font-size: clamp(29px, 2.7vw, 39px);
}

.bento-card--dark ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 25px 0;
  color: rgba(242, 239, 230, 0.67);
  font-size: 12px;
  list-style: none;
}

.bento-card--dark li::before {
  margin-right: 7px;
  color: var(--mint);
  content: "✓";
}

.bento-card--dark a {
  display: inline-flex;
  gap: 10px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}

.language-cloud {
  position: absolute;
  z-index: 1;
  top: 47px;
  right: 26px;
  left: 26px;
  height: 130px;
}

.language-cloud span {
  position: absolute;
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(51, 136, 115, 0.23);
  border-radius: 999px;
  color: var(--mint-deep);
  font-size: 12px;
}

.language-cloud span:nth-child(1) { top: 0; left: 3%; transform: rotate(-5deg); }
.language-cloud span:nth-child(2) { top: 18px; left: 38%; transform: rotate(2deg); }
.language-cloud span:nth-child(3) { top: 0; right: 0; transform: rotate(6deg); }
.language-cloud span:nth-child(4) { top: 70px; left: 17%; transform: rotate(4deg); }
.language-cloud span:nth-child(5) { top: 72px; right: 15%; transform: rotate(-4deg); }

.export-stack {
  position: absolute;
  z-index: 1;
  top: 37px;
  right: 43px;
  width: 200px;
  height: 125px;
}

.export-stack span {
  position: absolute;
  display: grid;
  width: 89px;
  height: 112px;
  place-items: end center;
  padding-bottom: 14px;
  border: 1px solid rgba(44, 32, 54, 0.18);
  border-radius: 12px;
  background: rgba(246, 243, 235, 0.8);
  color: var(--plum);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  box-shadow: 0 17px 36px rgba(44, 32, 54, 0.09);
}

.export-stack span::before {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 48px;
  height: 38px;
  border-bottom: 1px solid rgba(44, 32, 54, 0.14);
  background: repeating-linear-gradient(to bottom, rgba(44, 32, 54, 0.2) 0 1px, transparent 1px 8px);
  content: "";
}

.export-stack span:first-child { top: 9px; left: 1px; transform: rotate(-8deg); }
.export-stack span:last-child { top: -3px; right: 1px; transform: rotate(7deg); }

.settle-section {
  overflow: hidden;
  padding: 0;
}

.settle-section::before {
  position: absolute;
  top: -380px;
  right: -410px;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(79, 214, 160, 0.15);
  border-radius: 50%;
  content: "";
}

.settle-grid {
  display: grid;
  min-height: 900px;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 90px;
}

.settle-copy {
  max-width: 690px;
  padding: 130px 0;
}

.settle-copy h2 {
  font-size: clamp(53px, 5.7vw, 80px);
}

.settle-copy > p:not(.kicker) {
  max-width: 570px;
  color: rgba(242, 239, 230, 0.64);
  font-size: 18px;
  line-height: 1.65;
}

.settle-stat {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 49px;
  padding-top: 29px;
  border-top: 1px solid var(--white-line);
}

.settle-stat strong {
  color: var(--mint);
  font-family: var(--display);
  font-size: 68px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.settle-stat span {
  color: rgba(242, 239, 230, 0.58);
  font-size: 13px;
  line-height: 1.4;
}

.settle-product {
  position: relative;
  height: 900px;
}

.phone--settle {
  position: absolute;
  top: 92px;
  left: 38px;
  width: 366px;
  transform: rotate(4deg);
}

.settle-seal {
  position: absolute;
  z-index: 4;
  right: -7px;
  bottom: 120px;
  display: grid;
  width: 155px;
  height: 155px;
  place-content: center;
  border: 1px solid rgba(6, 32, 24, 0.3);
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.settle-seal span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--body);
  font-size: 24px;
}

.faq-section {
  padding-top: 145px;
  padding-bottom: 155px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 11%;
}

.faq-grid .section-heading {
  margin-bottom: 0;
}

.faq-grid .section-heading p:last-child {
  max-width: 390px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint-deep);
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--mint);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  padding: 0 58px 27px 0;
  margin-bottom: 0;
  color: #5e6963;
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 136px 0 145px;
  background:
    radial-gradient(circle at 50% 120%, rgba(79, 214, 160, 0.2), transparent 42%),
    var(--plum);
  color: var(--chalk);
}

.final-orbit {
  position: absolute;
  top: -420px;
  left: 50%;
  width: 1050px;
  height: 1050px;
  border: 1px solid rgba(242, 239, 230, 0.1);
  border-radius: 50%;
  transform: translateX(-50%);
}

.final-orbit::after {
  position: absolute;
  top: 125px;
  left: 125px;
  width: 798px;
  height: 798px;
  border: 1px solid rgba(79, 214, 160, 0.13);
  border-radius: 50%;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta-inner > img {
  width: 171px;
  height: auto;
  margin-bottom: 36px;
}

.final-cta p {
  margin-bottom: 43px;
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 66px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

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

.final-cta small {
  margin-top: 19px;
  color: rgba(242, 239, 230, 0.44);
  font-size: 11px;
}

.site-footer {
  padding: 56px 0 27px;
  border-top: 1px solid var(--white-line);
  background: var(--plum);
  color: var(--chalk);
}

.footer-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand--footer img {
  width: 120px;
}

.footer-shell > p {
  margin: 0;
  color: rgba(242, 239, 230, 0.43);
  font-size: 12px;
}

.footer-shell nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(242, 239, 230, 0.65);
  font-size: 12px;
}

.footer-shell nav a:hover,
.footer-shell nav a:focus-visible {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 27px;
  margin-top: 20px;
  border-top: 1px solid var(--white-line);
  color: rgba(242, 239, 230, 0.3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.reveal {
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    gap: 15px;
  }

  .hero-product {
    transform: translateX(25px) scale(0.92);
    transform-origin: bottom center;
  }

  .float-card--top {
    right: -16px;
  }

  .showcase-grid {
    gap: 6%;
  }

  .settle-grid {
    gap: 35px;
  }

  .settle-seal {
    right: 8px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 44px, 860px);
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links > a:nth-child(2),
  .nav-links > a:nth-child(3) {
    display: none;
  }

  .hero,
  .hero-shell {
    min-height: 1040px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 160px;
  }

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

  .hero-product {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 540px;
    height: 690px;
    transform: translateX(80px) scale(0.76);
    transform-origin: bottom right;
  }

  .hero-actions,
  .trust-list {
    max-width: 570px;
  }

  .hero-lede {
    max-width: 560px;
  }

  .showcase-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 5%;
  }

  .phone--showcase {
    width: 315px;
  }

  .receipt-note {
    right: -8px;
  }

  .bento-card:nth-child(n) {
    grid-column: span 6;
  }

  .bento-card--dark ul {
    grid-template-columns: 1fr;
  }

  .settle-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .phone--settle {
    left: 0;
    width: 325px;
  }

  .settle-seal {
    right: -19px;
  }

  .faq-grid {
    gap: 7%;
  }

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

  .footer-shell nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100% - 36px);
    --radius-lg: 28px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .nav-shell {
    height: 76px;
  }

  .brand img {
    width: 120px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 105px 28px 35px;
    background: rgba(26, 19, 31, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 190ms ease, transform 190ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a:nth-child(n) {
    display: flex;
  }

  .nav-links > a:not(.nav-cta) {
    align-items: center;
    justify-content: space-between;
    padding: 17px 2px;
    border-bottom: 1px solid var(--white-line);
    color: var(--chalk);
    font-family: var(--display);
    font-size: 22px;
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links .lang-link {
    font-family: var(--mono);
    font-size: 13px;
  }

  .nav-cta {
    margin-top: 27px;
    background: var(--mint);
    color: var(--mint-ink);
  }

  .hero,
  .hero-shell {
    min-height: 1050px;
  }

  .hero-shell {
    padding-top: 125px;
  }

  .status {
    margin-bottom: 24px;
    font-size: 9px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(49px, 14.3vw, 66px);
    line-height: 1.01;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .trust-list {
    gap: 8px 16px;
  }

  .hero-product {
    right: 50%;
    bottom: -60px;
    width: 520px;
    height: 680px;
    transform: translateX(64%) scale(0.69);
    transform-origin: bottom center;
  }

  .float-card--top {
    right: -36px;
  }

  .scroll-cue {
    display: none;
  }

  .use-cases {
    padding: 17px 0;
  }

  .use-cases-track {
    justify-content: flex-start;
    gap: 17px;
    overflow: hidden;
    font-size: 11px;
  }

  .use-cases-track span:nth-of-type(n+5),
  .use-cases-track i:nth-of-type(n+5) {
    display: none;
  }

  .section {
    padding: 94px 0;
  }

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

  .kicker {
    margin-bottom: 19px;
  }

  h2 {
    font-size: clamp(43px, 12.5vw, 61px);
    line-height: 1.01;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step,
  .step + .step {
    min-height: 0;
    padding: 34px 0 39px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 37px;
  }

  .step:last-child {
    border-bottom: 0;
  }

  .showcase {
    padding: 0;
  }

  .showcase-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-window {
    min-height: 700px;
  }

  .product-window::before {
    top: 30px;
    left: 50%;
    width: 530px;
    height: 530px;
    transform: translateX(-50%);
  }

  .phone--showcase {
    top: 65px;
    left: 50%;
    width: 300px;
  }

  .receipt-note {
    top: 492px;
    right: -2px;
    width: 205px;
  }

  .showcase-copy {
    padding: 87px 0 98px;
  }

  .showcase-copy h2 {
    font-size: clamp(42px, 12vw, 57px);
  }

  .large-copy {
    font-size: 17px;
  }

  .bento-section {
    padding-bottom: 101px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card:nth-child(n) {
    min-height: 440px;
    grid-column: auto;
    padding: 29px;
  }

  .bento-index {
    margin-bottom: 109px;
  }

  .bento-card h3,
  .bento-card--dark h3 {
    font-size: 31px;
  }

  .signal {
    top: 40px;
    right: 33px;
    transform: scale(0.82);
    transform-origin: right top;
  }

  .privacy-mark {
    right: -70px;
  }

  .language-cloud {
    right: 18px;
    left: 18px;
  }

  .export-stack {
    top: 37px;
    right: 24px;
    transform: scale(0.82);
    transform-origin: right top;
  }

  .settle-section {
    padding: 0;
  }

  .settle-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .settle-copy {
    padding: 98px 0 30px;
  }

  .settle-copy h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .settle-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .settle-product {
    height: 680px;
  }

  .phone--settle {
    top: 29px;
    left: 50%;
    width: 305px;
    transform: translateX(-51%) rotate(4deg);
  }

  .settle-seal {
    right: -7px;
    bottom: 98px;
    width: 125px;
    height: 125px;
  }

  .faq-section {
    padding: 98px 0 108px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-cta {
    padding: 106px 0 112px;
  }

  .final-cta p {
    font-size: clamp(38px, 11vw, 53px);
  }

  .final-cta small {
    max-width: 275px;
  }

  .site-footer {
    padding-top: 43px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .footer-shell nav {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 24px;
    padding: 24px 0 15px;
    border-top: 1px solid var(--white-line);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
  }
}

@media (max-width: 390px) {
  .hero,
  .hero-shell {
    min-height: 1020px;
  }

  .hero-product {
    bottom: -82px;
    transform: translateX(65%) scale(0.62);
  }

  .button--mint {
    width: 100%;
  }

  .trust-list li:last-child {
    display: none;
  }

  .bento-card--dark ul {
    font-size: 11px;
  }

  .phone--settle,
  .phone--showcase {
    width: 280px;
  }
}

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

  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}
