:root {
  --ink: #10211e;
  --ink-soft: #50615d;
  --forest: #0b3b35;
  --forest-2: #075e54;
  --mint: #9ef1dc;
  --mint-soft: #e1f8f0;
  --cream: #f7f5ee;
  --sand: #f1dfbd;
  --orange: #ff7d45;
  --orange-dark: #e65d25;
  --blue: #bcdcf8;
  --white: #fff;
  --line: rgba(16, 33, 30, .12);
  --shadow: 0 24px 70px rgba(16, 55, 48, .13);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button {
  font-family: inherit;
}

img,
svg {
  display: block;
}

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

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(247, 245, 238, .9);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 33, 30, .05);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(87, 76, 224, .18);
  overflow: hidden;
}

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

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-left: auto;
  margin-right: 38px;
}

.nav-links a,
.language-switch {
  color: #354843;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--forest-2);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.language-switch {
  min-width: 52px;
  padding: 10px 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  font-weight: 750;
  line-height: 1.1;
  border-radius: 15px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button-dark {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 9px 26px rgba(11, 59, 53, .19);
}

.button-dark:hover {
  background: #062d28;
}

.button-small {
  min-height: 43px;
  padding: 9px 15px;
  font-size: 14px;
  border-radius: 12px;
}

.button-small svg,
.text-link svg {
  width: 18px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  gap: 11px;
  min-width: 184px;
  color: #1f170e;
  background: var(--orange);
  box-shadow: 0 15px 34px rgba(230, 93, 37, .22);
}

.button-primary:hover {
  background: #ff8d5b;
  box-shadow: 0 18px 38px rgba(230, 93, 37, .28);
}

.button-primary small,
.button-primary strong {
  display: block;
  text-align: left;
}

.button-primary small {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .72;
  text-transform: uppercase;
}

.button-primary strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

.play-icon {
  width: 26px;
  fill: rgba(255, 255, 255, .16);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(11, 59, 53, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 59, 53, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black 15%, transparent 82%);
}

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

.hero-glow-one {
  top: 100px;
  right: -130px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(158, 241, 220, .75), rgba(158, 241, 220, 0) 70%);
}

.hero-glow-two {
  bottom: -250px;
  left: -250px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(241, 223, 189, .8), rgba(241, 223, 189, 0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 5px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--forest-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  letter-spacing: .05em;
  background: rgba(225, 248, 240, .84);
  border: 1px solid rgba(7, 94, 84, .12);
  border-radius: 99px;
  text-transform: none;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: #24b68f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(36, 182, 143, .12);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(58px, 6.2vw, 91px);
  font-weight: 820;
  letter-spacing: -.07em;
  line-height: .96;
}

.hero h1 .accent {
  color: var(--forest-2);
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 750;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.text-link svg {
  transition: transform .2s ease;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  padding: 0;
  margin: 35px 0 0;
  color: #425650;
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
}

.trust-list svg {
  width: 17px;
  height: 17px;
  margin-right: 6px;
  fill: none;
  stroke: var(--forest-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: 465px;
  height: 465px;
  background: var(--forest);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 40px 90px rgba(11, 59, 53, .2);
  content: "";
}

.device-orbit {
  position: absolute;
  border: 1px solid rgba(11, 59, 53, .16);
  border-radius: 50%;
}

.orbit-one {
  width: 530px;
  height: 530px;
}

.orbit-two {
  width: 600px;
  height: 600px;
  border-style: dashed;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 270px;
  padding: 9px;
  overflow: hidden;
  background: #101513;
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 39px;
  box-shadow: 0 36px 75px rgba(0, 0, 0, .35);
  transform: rotate(3deg);
}

.phone-frame img {
  width: 100%;
  height: 535px;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 19px;
  background: #101513;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.browser-card {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 42px 1fr 9px;
  gap: 11px;
  align-items: center;
  min-width: 205px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 16px;
  box-shadow: 0 17px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.browser-card-top {
  top: 105px;
  left: -16px;
  transform: rotate(-3deg);
}

.browser-card-bottom {
  right: -8px;
  bottom: 95px;
  transform: rotate(2deg);
}

.browser-card strong,
.browser-card small {
  display: block;
  line-height: 1.25;
}

.browser-card strong {
  font-size: 13px;
}

.browser-card small {
  margin-top: 4px;
  color: #687872;
  font-size: 10px;
}

.browser-card > i {
  width: 8px;
  height: 8px;
  background: #25b88e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 184, 142, .13);
}

.device-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--forest-2);
  background: var(--mint-soft);
  border-radius: 12px;
  place-items: center;
}

.device-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.connection-line {
  position: absolute;
  right: 47px;
  bottom: 74px;
  z-index: 3;
  display: flex;
  gap: 6px;
}

.connection-line span {
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 1.6s infinite ease-in-out;
}

.connection-line span:nth-child(2) { animation-delay: .2s; }
.connection-line span:nth-child(3) { animation-delay: .4s; }

@keyframes pulse {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.proof-strip {
  color: rgba(255, 255, 255, .78);
  background: var(--forest);
}

.proof-inner {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  min-height: 105px;
}

.proof-inner p {
  max-width: 300px;
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: .02em;
}

.platforms i {
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
  opacity: .7;
}

.section {
  padding: 120px 0;
}

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

.section-heading h2,
.privacy-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 63px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.section-heading > p:not(.section-kicker) {
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  margin-bottom: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 285px;
  padding: 36px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(16, 33, 30, .08);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(16, 33, 30, .04);
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 70px;
  right: -27px;
  z-index: 3;
  width: 36px;
  height: 1px;
  background: rgba(7, 94, 84, .28);
  content: "";
}

.step-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(11, 59, 53, .2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
}

.step-icon {
  display: grid;
  width: 62px;
  height: 62px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 19px;
  place-items: center;
}

.step-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.steps li:nth-child(2) .step-icon svg {
  fill: currentColor;
  stroke: none;
}

.steps h3,
.feature-card h3,
.case-grid h3 {
  margin: 26px 0 10px;
  font-size: 23px;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.steps p,
.feature-card p,
.case-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.features {
  background: #efece2;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
}

.section-heading.split > p {
  margin: 0 0 4px;
}

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

.feature-card {
  position: relative;
  min-height: 430px;
  padding: 42px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.feature-wide {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  grid-column: 1 / -1;
  gap: 30px;
  align-items: center;
  min-height: 410px;
}

.feature-card h3 {
  max-width: 460px;
  margin-top: 14px;
  font-size: 35px;
  letter-spacing: -.045em;
}

.feature-card p {
  max-width: 490px;
  font-size: 16px;
}

.feature-tag {
  display: inline-block;
  padding: 5px 10px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  background: rgba(255, 255, 255, .55);
  border-radius: 99px;
  text-transform: uppercase;
}

.feature-mint {
  background: var(--mint-soft);
}

.feature-dark {
  color: var(--white);
  background: var(--forest);
}

.feature-dark p {
  color: rgba(255, 255, 255, .68);
}

.feature-dark .feature-tag {
  color: var(--mint);
  background: rgba(255, 255, 255, .1);
}

.feature-sand {
  background: var(--sand);
}

.feature-blue {
  background: var(--blue);
}

.transfer-ui {
  position: relative;
  padding: 22px;
}

.transfer-ui::before {
  position: absolute;
  inset: -30px 15% -30px -5%;
  background: radial-gradient(circle, rgba(158, 241, 220, .85), transparent 68%);
  content: "";
}

.mini-window {
  position: relative;
  z-index: 1;
  padding: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 19px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.window-bar {
  display: flex;
  gap: 5px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 6px;
  height: 6px;
  background: #c3cbc8;
  border-radius: 50%;
}

.window-bar em {
  margin-left: auto;
  padding: 5px 14px;
  color: #71807b;
  font-size: 8px;
  font-style: normal;
  background: #f1f2ef;
  border-radius: 99px;
}

.file-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}

.file-row span,
.file-row strong,
.file-row small {
  display: block;
}

.file-row strong {
  font-size: 11px;
}

.file-row small {
  margin-top: 2px;
  color: #84908c;
  font-size: 8px;
}

.file-row b {
  color: var(--forest-2);
  font-size: 9px;
}

.file-icon {
  display: grid;
  width: 40px;
  height: 40px;
  color: #d75934;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  background: #ffddd2;
  border-radius: 11px;
  place-items: center;
}

.image-file {
  color: #446e98;
  background: #dfeefa;
}

.progress {
  height: 5px;
  margin-top: 13px;
  overflow: hidden;
  background: #dfe5e2;
  border-radius: 99px;
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--forest-2);
  border-radius: inherit;
}

.media-player {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  height: 150px;
  padding: 25px;
  background: linear-gradient(135deg, #14665a, #082a26);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
}

.play-circle {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
  place-items: center;
}

.play-circle svg {
  width: 22px;
  fill: currentColor;
}

.player-lines {
  position: absolute;
  top: 30px;
  right: 24px;
  left: 90px;
}

.player-lines i {
  display: block;
  height: 7px;
  margin-bottom: 9px;
  background: rgba(255, 255, 255, .3);
  border-radius: 99px;
}

.player-lines i:nth-child(2) {
  width: 70%;
  opacity: .6;
}

.player-progress {
  position: absolute;
  right: 25px;
  bottom: 28px;
  left: 25px;
  height: 4px;
  background: rgba(255, 255, 255, .18);
  border-radius: 99px;
}

.player-progress span {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--mint);
  border-radius: inherit;
}

.live-visual {
  position: absolute;
  right: 38px;
  bottom: 32px;
  left: 38px;
}

.live-visual > svg {
  width: 100%;
  fill: rgba(255, 255, 255, .36);
  stroke: #805f37;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.live-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 10px;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  background: #d65040;
  border-radius: 99px;
}

.live-pill i {
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
}

.control-panel {
  padding: 9px;
  background: rgba(255, 255, 255, .36);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 23px;
  box-shadow: 0 20px 50px rgba(46, 97, 130, .15);
  transform: rotate(-1deg);
}

.control-panel > div {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, .74);
  border-radius: 16px;
}

.control-panel > div + div {
  margin-top: 7px;
}

.control-panel span,
.control-panel small,
.control-panel strong {
  display: block;
}

.control-panel small {
  color: #5a6d70;
  font-size: 9px;
}

.control-panel strong {
  font-size: 13px;
}

.control-panel > div > i {
  width: 32px;
  height: 18px;
  background: var(--forest-2);
  border-radius: 99px;
}

.control-panel > div > i::after {
  display: block;
  width: 14px;
  height: 14px;
  margin: 2px 2px 2px auto;
  background: var(--white);
  border-radius: 50%;
  content: "";
}

.control-panel b {
  padding: 5px 9px;
  color: var(--forest);
  font-size: 10px;
  background: var(--mint);
  border-radius: 99px;
}

.shield {
  display: grid !important;
  width: 46px;
  height: 46px;
  color: var(--forest);
  background: var(--mint-soft);
  border-radius: 14px;
  place-items: center;
}

.shield svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.use-cases {
  background: var(--cream);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-grid article {
  padding: 35px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, box-shadow .2s ease;
}

.case-grid article:hover {
  box-shadow: 0 18px 45px rgba(16, 33, 30, .07);
  transform: translateY(-4px);
}

.case-icon {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--forest);
  background: var(--mint-soft);
  border-radius: 15px;
  place-items: center;
}

.case-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.case-grid h3 {
  font-size: 21px;
}

.privacy-section {
  padding-top: 10px;
}

.privacy-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.privacy-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #082f2a;
  place-items: center;
}

.privacy-visual::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(158, 241, 220, .22) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.privacy-ring {
  position: absolute;
  border: 1px solid rgba(158, 241, 220, .18);
  border-radius: 50%;
}

.ring-one { width: 190px; height: 190px; }
.ring-two { width: 300px; height: 300px; }
.ring-three { width: 420px; height: 420px; }

.privacy-shield {
  z-index: 2;
  display: grid;
  width: 116px;
  height: 116px;
  color: var(--forest);
  background: var(--mint);
  border: 10px solid rgba(255, 255, 255, .13);
  border-radius: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
  place-items: center;
}

.privacy-shield svg {
  width: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.local-node {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  background: var(--mint);
  border: 3px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(158, 241, 220, .08);
}

.node-one { top: 28%; left: 18%; }
.node-two { right: 15%; bottom: 24%; }
.node-three { top: 18%; right: 25%; }

.privacy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px;
}

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

.privacy-copy p:not(.section-kicker) {
  max-width: 600px;
  margin: 25px 0;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
}

.privacy-copy a {
  align-self: flex-start;
  padding-bottom: 3px;
  color: var(--mint);
  font-weight: 750;
  border-bottom: 1px solid rgba(158, 241, 220, .5);
}

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

.final-cta-inner {
  max-width: 800px;
}

.final-cta p:not(.section-kicker) {
  max-width: 610px;
  margin: 24px auto 32px;
  color: var(--ink-soft);
  font-size: 18px;
}

.site-footer {
  color: rgba(255, 255, 255, .64);
  background: #071f1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  padding-top: 72px;
  padding-bottom: 60px;
}

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

.footer-grid > div > p {
  margin: 14px 0 0;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: .8fr 1.1fr 1.4fr;
  gap: 40px;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 30px;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .hero h1 {
    font-size: clamp(56px, 9vw, 78px);
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    width: min(600px, 100%);
    margin-inline: auto;
  }

  .proof-inner {
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    padding: 24px 0;
    text-align: center;
  }

  .proof-inner p {
    max-width: none;
  }

  .platforms {
    justify-content: center;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-wide {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-card {
    grid-template-columns: .7fr 1.3fr;
  }

  .privacy-copy {
    padding: 55px;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius-xl: 25px;
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    font-size: 19px;
  }

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

  .button-small span,
  .button-small svg {
    display: none;
  }

  .button-small {
    min-width: 42px;
    padding: 0;
  }

  .button-small::before {
    font-size: 19px;
    content: "↗";
  }

  .language-switch {
    min-width: 46px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 70px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 62px);
    line-height: 1;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 10px;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .button-primary {
    width: 100%;
    max-width: 290px;
  }

  .trust-list {
    gap: 8px 13px;
    margin-top: 28px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual::before {
    width: 340px;
    height: 340px;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    display: none;
  }

  .phone-frame {
    width: 205px;
    border-radius: 32px;
  }

  .phone-frame img {
    height: 405px;
    border-radius: 24px;
  }

  .browser-card {
    grid-template-columns: 35px 1fr 7px;
    min-width: 175px;
    padding: 10px 12px;
  }

  .browser-card-top {
    top: 56px;
    left: 0;
  }

  .browser-card-bottom {
    right: 0;
    bottom: 58px;
  }

  .device-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
  }

  .device-icon svg {
    width: 19px;
  }

  .platforms {
    gap: 8px 10px;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .privacy-copy h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

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

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

  .steps li {
    min-height: 0;
    padding: 29px;
  }

  .steps li:not(:last-child)::after {
    display: none;
  }

  .step-icon {
    width: 54px;
    height: 54px;
  }

  .feature-card,
  .feature-wide {
    display: block;
    grid-column: auto;
    min-height: 420px;
    padding: 30px;
  }

  .feature-card h3 {
    font-size: 30px;
  }

  .feature-mint {
    padding-bottom: 265px;
  }

  .transfer-ui {
    position: absolute;
    right: 12px;
    bottom: 18px;
    left: 12px;
  }

  .feature-blue {
    padding-bottom: 245px;
  }

  .control-panel {
    position: absolute;
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .media-player,
  .live-visual {
    right: 25px;
    left: 25px;
  }

  .privacy-section {
    padding-top: 0;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .privacy-visual {
    min-height: 320px;
  }

  .privacy-copy {
    padding: 42px 28px 48px;
  }

  .footer-grid {
    padding-top: 55px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    min-height: 450px;
  }

  .browser-card {
    min-width: 157px;
  }

  .browser-card-top {
    left: -6px;
  }

  .browser-card-bottom {
    right: -6px;
  }

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

  .footer-links > div:last-child {
    grid-column: auto;
  }
}

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

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

}
