@font-face {
  font-family: "Inter";
  src: url("/asset/fonts/inter.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --color-canvas: #fffcfa;
  --color-surface: #ffffff;
  --color-surface-peach: #fff7f2;
  --color-surface-mint: #effaf8;
  --color-ink: #09142e;
  --color-ink-secondary: #456186;
  --color-line: rgba(9, 20, 46, 0.1);
  --color-teal: #00aaa4;
  --color-teal-hover: #008c87;
  --color-peach: #ff9862;
  --color-peach-hover: #ff8650;
  --container: 1640px;
  --gutter: clamp(31px, 6.05vw, 109px);
  --header-height: clamp(88px, 6.25vw, 112px);
  --focus-ring: 0 0 0 4px rgba(0, 174, 166, 0.24);
  --radius-control: 16px;
  --section-title-size: clamp(40px, 3.1vw, 56px);
  --section-lead-size: clamp(18px, 1.3vw, 23px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-canvas);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.header-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 12px;
}

.brand img {
  width: clamp(250px, 18.5vw, 333px);
  height: auto;
}

.primary-navigation {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(30px, 3.1vw, 58px);
}

.primary-navigation a,
.navigation-support {
  color: var(--color-ink);
  border-radius: 8px;
  font-size: clamp(15px, 1.13vw, 21px);
  font-weight: 570;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.navigation-support {
  padding: 0;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.primary-navigation a:not(.header-download):hover,
.navigation-support:hover {
  color: var(--color-teal-hover);
}

.primary-navigation a[aria-current="page"] {
  color: var(--color-teal-hover);
}

.primary-navigation .header-download {
  min-height: clamp(54px, 3.7vw, 67px);
  margin-left: clamp(18px, 2.4vw, 45px);
  padding: 0 clamp(30px, 2.6vw, 47px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  background: var(--color-peach);
  border-radius: var(--radius-control);
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 650;
}

.primary-navigation .header-download:hover {
  background: var(--color-peach-hover);
  transform: translateY(-2px);
}

.primary-navigation .header-download:active {
  transform: translateY(0);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(763px, calc(100svh - var(--header-height)));
  isolation: isolate;
  overflow: hidden;
  background: var(--color-surface-peach);
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 252, 250, 0.3) 0%, rgba(255, 252, 250, 0) 52%);
}

.hero-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  min-height: inherit;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: clamp(52px, 5vw, 86px) 0 clamp(52px, 5vw, 76px);
}

.hero-eyebrow {
  margin: 0 0 clamp(22px, 2vw, 30px);
  color: var(--color-ink-secondary);
  font-size: clamp(16px, 1.38vw, 24px);
  font-weight: 480;
  line-height: 1.35;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(54px, 4.7vw, 84px);
  font-weight: 780;
  letter-spacing: -0.058em;
  line-height: 1.03;
}

.hero-subheading {
  max-width: 650px;
  margin: clamp(22px, 2.2vw, 33px) 0 0;
  color: var(--color-ink);
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 430;
  letter-spacing: -0.021em;
  line-height: 1.45;
}

.hero-body {
  max-width: 660px;
  margin: clamp(20px, 2vw, 29px) 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(16px, 1.28vw, 22px);
  font-weight: 430;
  letter-spacing: -0.012em;
  line-height: 1.48;
}

.hero-actions {
  margin-top: clamp(25px, 2.5vw, 35px);
  display: flex;
  align-items: center;
  gap: clamp(22px, 2vw, 28px);
}

.button {
  min-height: 67px;
  padding: 0 clamp(28px, 2.1vw, 38px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-control);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 640;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary:hover {
  background: var(--color-peach-hover);
  transform: translateY(-2px);
}

.button-primary:active {
  transform: translateY(0);
}

.button-link {
  padding: 12px 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-teal);
  border-radius: 8px;
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 680;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.button-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button-link:hover {
  color: var(--color-teal-hover);
}

.button-link:hover svg {
  transform: translateX(4px);
}

.hero-proof {
  margin: clamp(20px, 1.9vw, 29px) 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 460;
  line-height: 1.4;
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 105%;
  margin-left: -5%;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-width: none;
}

.roundups {
  background: var(--color-surface-mint);
}

.roundups-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
  padding: clamp(48px, 4.2vw, 72px) 0 clamp(46px, 3.8vw, 66px);
}

.roundups-intro {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.roundups-intro h2 {
  max-width: none;
  margin: 0 auto;
  color: var(--color-ink);
  font-size: var(--section-title-size);
  font-weight: 770;
  letter-spacing: -0.048em;
  line-height: 1.05;
  white-space: nowrap;
}

.roundups-intro p {
  max-width: 920px;
  margin: clamp(14px, 1.2vw, 19px) auto 0;
  color: var(--color-ink-secondary);
  font-size: var(--section-lead-size);
  font-weight: 430;
  letter-spacing: -0.022em;
  line-height: 1.4;
}

.roundups-equation {
  max-width: 1320px;
  margin: clamp(34px, 2.8vw, 48px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.22fr) auto minmax(0, 1fr);
  align-items: end;
  column-gap: clamp(22px, 2.25vw, 42px);
  font-variant-numeric: tabular-nums;
}

.equation-term {
  min-width: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: clamp(11px, 0.85vw, 15px);
  text-align: center;
}

.equation-label {
  color: var(--color-ink-secondary);
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 520;
  line-height: 1.25;
}

.equation-value {
  color: var(--color-ink);
  font-size: clamp(58px, 5vw, 90px);
  font-weight: 760;
  letter-spacing: -0.072em;
  line-height: 0.91;
  white-space: nowrap;
}

.equation-roundup .equation-value {
  color: var(--color-teal);
  font-size: clamp(64px, 5.5vw, 98px);
}

.equation-operator {
  align-self: end;
  padding-bottom: clamp(2px, 0.5vw, 8px);
  color: #93a9bf;
  font-size: clamp(44px, 3.4vw, 60px);
  font-weight: 420;
  line-height: 0.9;
}

.roundups-sequence {
  margin: clamp(30px, 2.4vw, 42px) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.1vw, 40px);
  color: var(--color-ink);
  font-size: clamp(17px, 1.22vw, 21px);
  font-weight: 500;
  line-height: 1.35;
}

.roundups-sequence svg {
  width: 34px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roundups-lower {
  margin-top: clamp(24px, 1.8vw, 31px);
  padding-top: clamp(24px, 1.8vw, 31px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  grid-template-areas: "body clarification";
  align-items: start;
  column-gap: clamp(50px, 6vw, 105px);
  border-top: 1px solid rgba(69, 97, 134, 0.22);
}

.roundups-body,
.roundups-clarification {
  max-width: 920px;
  margin: 0;
  color: var(--color-ink-secondary);
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 430;
  line-height: 1.52;
}

.roundups-body {
  grid-area: body;
}

.roundups-clarification {
  grid-area: clarification;
  font-size: clamp(14px, 0.92vw, 16px);
}

.portfolio {
  background: var(--color-canvas);
}

.portfolio-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
  padding: clamp(72px, 5.8vw, 104px) 0 clamp(76px, 6vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(400px, 0.8fr);
  grid-template-areas:
    "title lead"
    "title cta"
    "media media"
    "features features";
  column-gap: clamp(56px, 6vw, 108px);
  row-gap: 22px;
}

.portfolio-title {
  grid-area: title;
  align-self: start;
  max-width: 780px;
  margin: 0;
  color: var(--color-ink);
  font-size: var(--section-title-size);
  font-weight: 770;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.portfolio-lead {
  grid-area: lead;
  max-width: 660px;
  margin: 0;
  color: var(--color-ink-secondary);
  font-size: var(--section-lead-size);
  font-weight: 430;
  letter-spacing: -0.018em;
  line-height: 1.46;
}

.portfolio-cta {
  grid-area: cta;
  width: fit-content;
  min-width: 0;
  justify-self: start;
}

.portfolio-media {
  grid-area: media;
  width: 100%;
  margin-top: clamp(24px, 2vw, 36px);
  display: block;
}

.portfolio-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1619 / 971;
  object-fit: contain;
  border-radius: 15px;
  filter: drop-shadow(0 22px 42px rgba(9, 20, 46, 0.1));
}

.portfolio-features {
  grid-area: features;
  margin-top: clamp(16px, 1.2vw, 22px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.portfolio-feature {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(69, 97, 134, 0.16);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(9, 20, 46, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
}

.portfolio-feature::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 3px;
  background: var(--color-teal);
  border-radius: 0 999px 999px 0;
  opacity: 0.45;
  transform: scaleY(0.45);
  transition: transform 180ms ease, opacity 180ms ease;
}

.portfolio-feature + .portfolio-feature {
  padding-left: 16px;
}

.portfolio-feature:last-child {
  padding-right: 16px;
}

.portfolio-feature-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--color-teal);
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 170, 164, 0.18);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.portfolio-feature-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.portfolio-feature-copy {
  min-width: 0;
}

.portfolio-feature h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(18px, 1.23vw, 22px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.portfolio-feature p {
  margin: 8px 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 430;
  line-height: 1.48;
}

.wallet-accounts {
  scroll-margin-top: 20px;
  background: var(--color-surface-peach);
}

.wallet-accounts-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
  padding: clamp(76px, 5.8vw, 104px) 0 clamp(72px, 5.3vw, 96px);
}

.wallet-accounts-intro {
  display: block;
}

.wallet-accounts-intro h2 {
  max-width: none;
  margin: 0;
  color: var(--color-ink);
  font-size: var(--section-title-size);
  font-weight: 770;
  letter-spacing: -0.052em;
  line-height: 1.02;
  white-space: nowrap;
}

.wallet-accounts-intro p {
  max-width: none;
  margin: 16px 0 0;
  color: var(--color-ink-secondary);
  font-size: var(--section-lead-size);
  font-weight: 430;
  letter-spacing: -0.018em;
  line-height: 1.48;
  white-space: nowrap;
}

.wallet-accounts-groups {
  margin-top: clamp(40px, 3.4vw, 58px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(36px, 3.8vw, 66px);
}

.wallet-account-group {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(224px, auto) auto;
  align-content: start;
  gap: clamp(28px, 2.2vw, 38px);
}

.wallet-accounts.is-reveal-ready .wallet-account-group {
  opacity: 0;
  transform: translateY(12px);
}

.wallet-accounts.is-reveal-ready.is-visible .wallet-account-group {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wallet-accounts.is-reveal-ready.is-visible .wallet-account-group:nth-child(2) {
  transition-delay: 80ms;
}

.wallet-accounts.is-reveal-ready.is-visible .wallet-account-group:nth-child(3) {
  transition-delay: 160ms;
}

.wallet-strips,
.roundup-settings,
.connected-accounts {
  min-width: 0;
  min-height: 224px;
}

.wallet-strips {
  padding-block: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.wallet-strip {
  width: calc(100% - 14px);
  min-height: 66px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 42px minmax(82px, 1fr) auto auto;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(69, 97, 134, 0.1);
  border-radius: 14px;
  box-shadow: 0 9px 22px rgba(9, 20, 46, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.wallet-strip-ethereum {
  margin-left: 14px;
}

.wallet-strip img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.wallet-strip-identity {
  min-width: 0;
  display: grid;
  gap: 4px;
  color: var(--color-ink-secondary);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.wallet-strip-identity strong {
  overflow: hidden;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wallet-strip-identity small {
  margin-left: 4px;
  color: var(--color-ink-secondary);
  font-size: 12px;
  font-weight: 560;
}

.wallet-strip-action {
  min-width: 58px;
  min-height: 34px;
  padding-inline: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-hover);
  background: rgba(0, 170, 164, 0.09);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 620;
  line-height: 1;
  cursor: default;
}

.roundup-settings {
  display: flex;
  align-items: center;
}

.roundup-settings-inner {
  width: 100%;
  padding: 20px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(69, 97, 134, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(9, 20, 46, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.roundup-settings-inner > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 720;
}

.roundup-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(69, 97, 134, 0.16);
  border-radius: 12px;
}

.roundup-options span {
  min-height: 60px;
  padding: 9px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-ink-secondary);
  border-left: 1px solid rgba(69, 97, 134, 0.14);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.25;
  text-align: center;
  cursor: default;
  transition: color 210ms ease, background-color 210ms ease, box-shadow 210ms ease;
}

.roundup-options span:first-child {
  border-left: 0;
}

.roundup-options span b {
  font-size: 14px;
  font-weight: 650;
}

.roundup-options .is-selected {
  color: #ffffff;
  background: var(--color-teal);
  box-shadow: inset 0 0 0 1px rgba(0, 140, 135, 0.2);
}

.roundup-pause {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-ink-secondary);
  font-size: 14px;
  font-weight: 560;
}

.roundup-switch {
  width: 50px;
  height: 28px;
  padding: 3px;
  display: block;
  background: #dfe3e9;
  border: 1px solid rgba(69, 97, 134, 0.08);
  border-radius: 999px;
  cursor: default;
}

.roundup-switch i {
  width: 20px;
  height: 20px;
  display: block;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(9, 20, 46, 0.18);
}

.connected-accounts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.connected-account {
  position: relative;
  min-height: 90px;
  padding: 18px 20px 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(69, 97, 134, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(9, 20, 46, 0.075);
  transition: transform 210ms ease, border-color 210ms ease, box-shadow 210ms ease;
}

.connected-account::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: #62ded5;
}

.connected-account > span:first-child {
  display: grid;
  gap: 7px;
}

.connected-account strong {
  font-size: 15px;
  font-weight: 720;
}

.connected-account b {
  color: var(--color-ink-secondary);
  font-size: 17px;
  font-weight: 540;
  font-variant-numeric: tabular-nums;
}

.connected-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink-secondary);
  font-size: 12px;
  font-weight: 560;
  white-space: nowrap;
}

.connected-status i {
  width: 9px;
  height: 9px;
  display: block;
  background: #17a83a;
  border-radius: 50%;
  transition: box-shadow 210ms ease;
}

.wallet-account-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.wallet-account-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.wallet-account-icon svg {
  width: 38px;
  height: 38px;
}

.wallet-account-copy h3 {
  margin: 2px 0 0;
  color: var(--color-ink);
  font-size: clamp(18px, 1.23vw, 22px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.wallet-account-copy p {
  max-width: 480px;
  margin: 9px 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 430;
  line-height: 1.48;
}

.wallet-accounts-clarification {
  max-width: 930px;
  margin: clamp(44px, 4vw, 68px) 0 0;
  padding-top: clamp(26px, 2.2vw, 38px);
  color: var(--color-ink-secondary);
  border-top: 1px solid rgba(69, 97, 134, 0.22);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 430;
  line-height: 1.52;
}

.get-started {
  scroll-margin-top: 20px;
  background: var(--color-surface-mint);
}

.get-started-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
  padding: clamp(70px, 5.5vw, 96px) 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1.28fr);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "title steps"
    "cta steps";
  column-gap: clamp(70px, 7.4vw, 132px);
}

.get-started h2 {
  grid-area: title;
  align-self: end;
  max-width: 590px;
  margin: 0;
  padding-bottom: 16px;
  color: var(--color-ink);
  font-size: var(--section-title-size);
  font-weight: 770;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.get-started-cta {
  grid-area: cta;
  align-self: start;
  width: fit-content;
  margin-top: 10px;
}

.get-started-steps {
  grid-area: steps;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: bundil-step;
}

.get-started-step {
  min-width: 0;
  padding: clamp(26px, 2vw, 34px) 0;
  display: grid;
  grid-template-columns: clamp(58px, 4.7vw, 78px) minmax(0, 1fr) clamp(84px, 6vw, 108px);
  grid-template-areas:
    "number title icon"
    "number body icon";
  align-items: start;
  column-gap: clamp(18px, 2vw, 32px);
  counter-increment: bundil-step;
}

.get-started-step:first-child {
  padding-top: 0;
}

.get-started-step:last-child {
  padding-bottom: 0;
}

.get-started-step + .get-started-step {
  border-top: 1px solid rgba(69, 97, 134, 0.2);
}

.get-started-step::before {
  content: counter(bundil-step);
  grid-area: number;
  color: var(--color-teal);
  font-size: clamp(54px, 4.1vw, 72px);
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.get-started-step h3 {
  grid-area: title;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 730;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.get-started-step p {
  grid-area: body;
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(16px, 1.12vw, 20px);
  font-weight: 430;
  line-height: 1.48;
}

.get-started-step-icons {
  grid-area: icon;
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--color-teal);
}

.get-started-step-icons svg {
  width: 62px;
  height: 62px;
  padding: 11px;
  flex: 0 0 auto;
  background: rgba(101, 221, 213, 0.18);
  border-radius: 50%;
}

.get-started-step-icons-pair {
  gap: 5px;
}

.get-started-step-icons-pair svg {
  width: 48px;
  height: 48px;
  padding: 9px;
}

.get-started-step-icons i {
  color: var(--color-teal-hover);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.downloads {
  scroll-margin-top: 20px;
  background: var(--color-canvas);
}

.downloads-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
  padding: clamp(42px, 3.6vw, 62px) 0 clamp(76px, 5.8vw, 104px);
}

.downloads-provenance {
  margin: 0;
  padding-bottom: clamp(28px, 2.2vw, 38px);
  color: var(--color-ink-secondary);
  border-bottom: 1px solid rgba(69, 97, 134, 0.2);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 430;
  line-height: 1.5;
  text-align: center;
}

.downloads-provenance a {
  color: var(--color-teal-hover);
  border-radius: 4px;
  font-weight: 600;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.downloads-provenance a:hover {
  color: var(--color-ink);
}

.downloads-intro {
  max-width: 940px;
  margin: clamp(38px, 3.4vw, 56px) auto 0;
  text-align: center;
}

.downloads-intro h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: var(--section-title-size);
  font-weight: 770;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.downloads-intro > p:not(.downloads-patch) {
  margin: clamp(18px, 1.6vw, 26px) 0 0;
  color: var(--color-ink-secondary);
  font-size: var(--section-lead-size);
  font-weight: 430;
  letter-spacing: -0.018em;
  line-height: 1.48;
}

.download-cards {
  margin-top: clamp(36px, 3vw, 50px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 34px);
}

.download-card {
  position: relative;
  min-width: 0;
  min-height: 320px;
  padding: clamp(24px, 2vw, 32px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(69, 97, 134, 0.18);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(9, 20, 46, 0.045);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.download-card::after {
  content: "✓";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--color-teal);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 760;
  opacity: 0;
  transform: scale(0.7) rotate(-12deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.download-card.is-selected {
  border-color: rgba(0, 170, 164, 0.48);
  box-shadow: 0 16px 38px rgba(9, 20, 46, 0.08), 0 0 0 3px rgba(0, 170, 164, 0.08);
}

.download-card.is-selected::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.download-card-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.download-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(21px, 1.4vw, 25px);
  font-weight: 730;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.download-platform-icon {
  width: 118px;
  height: 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  background: rgba(101, 221, 213, 0.16);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.download-card.is-selected .download-platform-icon {
  color: var(--color-teal-hover);
  background: rgba(101, 221, 213, 0.24);
  transform: scale(1.04);
}

.download-platform-icon svg {
  width: 58px;
  height: 66px;
}

.download-platform-apple svg {
  width: 54px;
  height: 68px;
}

.download-platform-linux svg {
  width: 61px;
  height: 70px;
}

.download-card-action {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 58px;
  padding-inline: 18px;
  gap: 10px;
  overflow: hidden;
  color: var(--color-ink);
  border: 0;
  font-family: inherit;
  font-size: clamp(16px, 1.05vw, 18px);
  opacity: 1;
  cursor: pointer;
}

.download-card-action::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.42) 48%, transparent 76%);
  transform: translateX(-125%);
}

.download-card-action span {
  min-width: 0;
}

.download-card-action svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.download-card-action path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-card-action:hover svg,
.download-card-action:focus-visible svg {
  transform: translateY(2px);
}

.download-card-action:active {
  transform: translateY(0) scale(0.985);
}

.download-card-action.is-activated::before {
  animation: download-button-sheen 520ms ease-out;
}

.download-card-action.is-activated svg {
  animation: download-arrow-confirm 520ms ease-out;
}

.download-release {
  max-width: 760px;
  margin: clamp(30px, 2.6vw, 42px) auto 0;
  padding-top: clamp(24px, 2vw, 32px);
  border-top: 1px solid rgba(69, 97, 134, 0.2);
}

.download-release-line {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(14px, 0.95vw, 16px);
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.download-release-line strong,
.download-release-line b {
  font-weight: 680;
}

.download-release-line span {
  color: var(--color-ink-secondary);
}

.download-release-line span::before {
  margin: 0 12px;
  color: rgba(69, 97, 134, 0.5);
  content: "·";
}

.faq {
  scroll-margin-top: 20px;
  background: var(--color-surface-mint);
}

.faq-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
  padding: clamp(76px, 6.2vw, 112px) 0 clamp(84px, 6.8vw, 124px);
  display: grid;
  grid-template-columns: minmax(340px, 0.64fr) minmax(0, 1.36fr);
  grid-template-areas:
    "title accordion"
    "cta accordion";
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: clamp(64px, 7.2vw, 132px);
}

.faq h2 {
  grid-area: title;
  max-width: 520px;
  margin: 0;
  color: var(--color-ink);
  font-size: var(--section-title-size);
  font-weight: 770;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.faq-accordion {
  grid-area: accordion;
  min-width: 0;
}

.faq-item {
  min-width: 0;
  border-bottom: 1px solid rgba(69, 97, 134, 0.2);
}

.faq-item[open] {
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: transparent;
  border-radius: 16px;
}

.faq-item summary {
  min-height: 76px;
  padding: 22px clamp(24px, 2vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 20px;
  color: var(--color-ink);
  border-radius: 14px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::marker {
  content: "";
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(0, 174, 166, 0.28);
  outline-offset: -3px;
}

.faq-question {
  min-width: 0;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.faq-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  justify-self: end;
  color: var(--color-teal);
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
  transition: opacity 190ms ease, transform 190ms ease;
}

.faq-toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::before {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  padding: 0 clamp(88px, 7vw, 122px) clamp(26px, 2vw, 34px) clamp(24px, 2vw, 34px);
  animation: faq-answer-in 210ms ease both;
}

.faq-answer p {
  max-width: 850px;
  margin: 0;
  color: var(--color-ink-secondary);
  font-size: clamp(16px, 1.08vw, 19px);
  font-weight: 430;
  line-height: 1.55;
}

.faq-cta {
  grid-area: cta;
  align-self: start;
  width: fit-content;
  margin-top: 32px;
}

.legal-main {
  background: var(--color-canvas);
}

.legal-intro {
  background: var(--color-surface-peach);
  border-bottom: 1px solid var(--color-line);
}

.legal-intro-shell,
.legal-layout {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.legal-intro-shell {
  padding-block: clamp(46px, 4.8vw, 76px);
}

.legal-intro h1 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(56px, 5.4vw, 88px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.legal-intro-copy {
  max-width: none;
  margin: 24px 0 0;
  color: var(--color-ink-secondary);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 430;
  line-height: 1.55;
  white-space: nowrap;
}

.legal-layout {
  padding-block: clamp(64px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 760px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(58px, 8vw, 132px);
}

.legal-contents {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 4px;
}

.legal-contents a {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  color: var(--color-ink-secondary);
  border-left: 2px solid rgba(0, 170, 164, 0.22);
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.legal-contents a:hover {
  color: var(--color-teal-hover);
  background: rgba(101, 221, 213, 0.1);
  border-color: var(--color-teal);
}

.legal-copy {
  min-width: 0;
  max-width: 72ch;
}

.legal-section {
  padding-top: clamp(38px, 4.2vw, 58px);
  border-top: 1px solid rgba(69, 97, 134, 0.2);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section + .legal-section {
  margin-top: clamp(54px, 6vw, 82px);
}

.legal-section h2 {
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: var(--section-title-size);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.legal-section h3 {
  margin: 36px 0 12px;
  color: var(--color-ink);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 710;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.legal-section p {
  margin: 0;
  color: var(--color-ink-secondary);
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 420;
  line-height: 1.7;
}

.legal-section h2 + p {
  font-size: var(--section-lead-size);
}

.legal-section p + p {
  margin-top: 18px;
}

.legal-reset {
  min-height: 44px;
  margin: 18px 0 0;
  padding: 4px;
  color: var(--color-teal-hover);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-size: 16px;
  font-weight: 680;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 180ms ease;
}

.legal-reset:hover {
  color: var(--color-ink);
}

.legal-back {
  width: fit-content;
  margin-top: clamp(42px, 5vw, 68px);
}

.site-footer {
  --footer-bottom-padding: 24px;
  --consent-clearance: 0px;
  background: var(--color-surface);
}

.footer-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
  padding: 36px 0 calc(var(--footer-bottom-padding) + var(--consent-clearance));
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 90px);
}

.footer-brand {
  flex: 0 0 auto;
  display: inline-flex;
  border-radius: 12px;
}

.footer-brand img {
  width: clamp(250px, 17vw, 280px);
  height: auto;
}

.footer-navigation {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.2vw, 38px);
}

.footer-navigation a,
.footer-support {
  color: var(--color-ink);
  border-radius: 6px;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 540;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.footer-support {
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.footer-navigation a:hover,
.footer-support:hover {
  color: var(--color-teal-hover);
}

.footer-navigation a:last-child {
  font-weight: 680;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(69, 97, 134, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: var(--color-ink-secondary);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 430;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  border-radius: 12px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(7%) sepia(31%) saturate(2216%) hue-rotate(189deg) brightness(92%) contrast(105%);
  transition: filter 180ms ease;
}

.footer-social a:hover {
  background: rgba(101, 221, 213, 0.16);
  transform: translateY(-2px);
}

.footer-social a:hover img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(75%) saturate(1284%) hue-rotate(137deg) brightness(88%) contrast(101%);
}

.support-widget {
  --support-normal-bottom: 22px;
  --support-consent-clearance: 0px;
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: calc(var(--support-normal-bottom) + env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
}

.support-launcher {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--color-peach);
  border: 1px solid rgba(9, 20, 46, 0.12);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(9, 20, 46, 0.18);
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.support-launcher:hover {
  background: var(--color-peach-hover);
  box-shadow: 0 15px 34px rgba(9, 20, 46, 0.22);
  transform: translateY(-2px);
}

.support-launcher-icon {
  position: absolute;
  width: 26px;
  height: 26px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.support-launcher-icon-question {
  background: currentColor;
  -webkit-mask: url("/asset/icons/phosphor/question.svg") center / contain no-repeat;
  mask: url("/asset/icons/phosphor/question.svg") center / contain no-repeat;
}

.support-launcher-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.72);
}

.support-launcher-icon-close path,
.support-send path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-launcher.is-open .support-launcher-icon-question {
  opacity: 0;
  transform: rotate(90deg) scale(0.72);
}

.support-launcher.is-open .support-launcher-icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.support-widget[data-consent-visible="true"] .support-launcher.is-open {
  transform: translateY(calc(-1 * var(--support-consent-clearance)));
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: calc(68px + var(--support-consent-clearance));
  width: 340px;
  height: min(430px, calc(100dvh - var(--support-consent-clearance) - 120px));
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(69, 97, 134, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(9, 20, 46, 0.2);
  transform-origin: bottom right;
}

.support-panel[hidden] {
  display: none;
}

.support-panel.is-open {
  animation: support-panel-in 180ms ease-out both;
}

.support-panel-header {
  min-height: 70px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface-mint);
  border-bottom: 1px solid rgba(69, 97, 134, 0.15);
}

.support-panel-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  background-color: var(--color-teal);
  border-radius: 12px;
  -webkit-mask: url("/asset/icons/phosphor/chat-circle-dots-duotone.svg") center / 24px 24px no-repeat;
  mask: url("/asset/icons/phosphor/chat-circle-dots-duotone.svg") center / 24px 24px no-repeat;
}

.support-panel-title {
  display: grid;
  gap: 2px;
}

.support-panel-title strong {
  font-size: 15px;
  font-weight: 720;
  line-height: 1.25;
}

.support-panel-title span {
  color: var(--color-ink-secondary);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.3;
}

.support-messages {
  min-height: 0;
  flex: 1 1 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(69, 97, 134, 0.34) transparent;
}

.support-message {
  max-width: 84%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 430;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.support-message-assistant {
  align-self: flex-start;
  color: var(--color-ink);
  background: var(--color-surface-mint);
  border-bottom-left-radius: 5px;
}

.support-message-user {
  align-self: flex-end;
  color: var(--color-ink);
  background: rgba(255, 152, 98, 0.34);
  border-bottom-right-radius: 5px;
}

.support-typing {
  min-width: 58px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.support-typing span {
  width: 7px;
  height: 7px;
  background: var(--color-teal-hover);
  border-radius: 50%;
  animation: support-typing-dot 1.1s ease-in-out infinite;
}

.support-typing span:nth-child(2) {
  animation-delay: 150ms;
}

.support-typing span:nth-child(3) {
  animation-delay: 300ms;
}

.support-composer {
  flex: 0 0 auto;
  padding: 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border-top: 1px solid rgba(69, 97, 134, 0.16);
}

.support-input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  color: var(--color-ink);
  background: var(--color-canvas);
  border: 1px solid rgba(69, 97, 134, 0.24);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.support-input::placeholder {
  color: #6d819f;
}

.support-input:hover {
  border-color: rgba(0, 140, 135, 0.42);
}

.support-input:focus-visible {
  border-color: var(--color-teal-hover);
}

.support-input:disabled {
  color: rgba(69, 97, 134, 0.74);
  background: #f2f5f7;
  cursor: not-allowed;
}

.support-send {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  background: var(--color-peach);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.support-send:hover:not(:disabled) {
  background: var(--color-peach-hover);
  transform: translateY(-1px);
}

.support-send:disabled {
  color: rgba(69, 97, 134, 0.72);
  background: #e9edf2;
  cursor: not-allowed;
}

.support-send svg {
  width: 19px;
  height: 19px;
}

.consent-banner {
  position: fixed;
  z-index: 100;
  right: auto;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 50%;
  width: min(calc(100% - 32px), 760px);
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(69, 97, 134, 0.24);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(9, 20, 46, 0.12);
  transform: translateX(-50%);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  margin: 0;
  padding-left: 10px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 430;
  line-height: 1.45;
}

.consent-banner a {
  color: var(--color-teal-hover);
  border-radius: 4px;
  font-weight: 650;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.consent-banner a:hover {
  color: var(--color-ink);
}

.consent-accept {
  min-width: 142px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes download-button-sheen {
  from {
    transform: translateX(-125%);
  }

  to {
    transform: translateX(125%);
  }
}

@keyframes download-arrow-confirm {
  0%, 100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(5px);
  }
}

@keyframes support-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes support-typing-dot {
  0%, 80%, 100% {
    opacity: 0.38;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (hover: hover) {
  .portfolio-feature:hover {
    z-index: 1;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(0, 170, 164, 0.36);
    box-shadow: 0 14px 34px rgba(9, 20, 46, 0.085);
    transform: translateX(5px);
  }

  .portfolio-feature:hover::before {
    opacity: 1;
    transform: scaleY(1);
  }

  .portfolio-feature:hover .portfolio-feature-icon {
    color: #ffffff;
    background: var(--color-teal-hover);
    transform: translateY(-2px) scale(1.04);
  }

  .wallet-strips:hover .wallet-strip-bitcoin,
  .wallet-strips:hover .wallet-strip-litecoin {
    transform: translateX(-4px);
  }

  .wallet-strips:hover .wallet-strip-ethereum {
    transform: translateX(4px);
  }

  .wallet-strips:hover .wallet-strip {
    box-shadow: 0 13px 30px rgba(9, 20, 46, 0.105);
  }

  .roundup-settings:hover .roundup-settings-inner {
    box-shadow: 0 15px 32px rgba(9, 20, 46, 0.1);
    transform: translateY(-2px);
  }

  .roundup-settings:hover .roundup-options .is-selected {
    background: var(--color-teal-hover);
    box-shadow: inset 0 0 0 2px rgba(101, 221, 213, 0.5);
  }

  .connected-account:hover {
    border-color: rgba(0, 170, 164, 0.36);
    box-shadow: 0 14px 30px rgba(9, 20, 46, 0.1);
    transform: translateY(-2px);
  }

  .connected-account:hover .connected-status i {
    box-shadow: 0 0 0 5px rgba(101, 221, 213, 0.28);
  }

  .download-card:hover {
    border-color: rgba(0, 170, 164, 0.28);
    box-shadow: 0 16px 38px rgba(9, 20, 46, 0.075);
    transform: translateY(-3px);
  }

  .faq-item summary:hover .faq-question {
    color: var(--color-teal-hover);
  }
}

@media (min-width: 961px) {
  :root {
    --section-lead-size: clamp(18px, 1.15vw, 21px);
  }

  .hero-media {
    display: none;
  }

  .portfolio-shell {
    padding-block: clamp(48px, 4vw, 68px);
    grid-template-columns: minmax(480px, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
      "title media"
      "lead media"
      "features media"
      "cta media";
    column-gap: clamp(56px, 5vw, 84px);
    row-gap: 0;
    align-items: start;
  }

  .portfolio-title {
    max-width: 680px;
    font-size: var(--section-title-size);
  }

  .portfolio-lead {
    max-width: 590px;
    margin-top: 24px;
    font-size: var(--section-lead-size);
  }

  .portfolio-cta {
    margin-top: 26px;
  }

  .portfolio-media {
    width: min(108%, 860px);
    margin-top: 0;
    justify-self: end;
    align-self: center;
  }

  .portfolio-features {
    width: 100%;
    margin-top: 28px;
    padding-top: 0;
    grid-template-columns: 1fr;
  }

  .portfolio-feature {
    padding: 16px;
  }

  .portfolio-feature h3 {
    font-size: 18px;
  }

  .portfolio-feature p {
    max-width: 560px;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.46;
  }
}

@media (max-width: 1260px) {
  :root {
    --gutter: clamp(36px, 5.2vw, 68px);
  }

  .header-shell {
    gap: 24px;
  }

  .brand img {
    width: clamp(224px, 20vw, 268px);
  }

  .primary-navigation {
    gap: clamp(22px, 2.4vw, 34px);
  }

  .primary-navigation .header-download {
    margin-left: 12px;
    padding-inline: 28px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  }

  .hero-media {
    width: 126%;
    margin-left: -14%;
  }

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

  .roundups-equation {
    column-gap: 20px;
  }

  .roundups-lower {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    column-gap: 54px;
  }

  .wallet-accounts-groups {
    gap: 32px;
  }

  .wallet-strip {
    padding-inline: 10px;
    grid-template-columns: 38px minmax(74px, 1fr) auto auto;
    gap: 7px;
  }

  .wallet-strip img {
    width: 38px;
    height: 38px;
  }

  .wallet-strip-action {
    min-width: 52px;
    padding-inline: 8px;
  }
}

@media (max-width: 1100px) {
  .wallet-accounts-groups {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .wallet-account-group {
    grid-template-rows: auto auto;
    gap: 26px;
  }

  .wallet-strips,
  .roundup-settings,
  .connected-accounts {
    min-height: 0;
  }

  .get-started-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "title"
      "steps"
      "cta";
  }

  .get-started h2 {
    align-self: auto;
    max-width: 720px;
    padding-bottom: 0;
  }

  .get-started-steps {
    max-width: 760px;
    margin-top: 42px;
  }

  .get-started-cta {
    margin-top: 32px;
  }

  .download-card {
    min-height: 292px;
    padding: 22px;
  }

  .download-platform-icon {
    width: 100px;
    height: 100px;
  }

  .faq-shell {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    column-gap: 48px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 82px;
    --gutter: clamp(26px, 6.5vw, 57px);
  }

  .site-header {
    background: rgba(255, 255, 255, 0.97);
  }

  .header-shell {
    gap: 16px;
  }

  .brand img {
    width: clamp(190px, 32vw, 244px);
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--color-ink);
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 13px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: var(--gutter);
    left: var(--gutter);
    margin: 0;
    padding: 14px;
    display: grid;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--color-line);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(9, 20, 46, 0.13);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "title"
      "accordion"
      "cta";
  }

  .faq h2 {
    max-width: 720px;
  }

  .faq-accordion {
    margin-top: 42px;
  }

  .faq-cta {
    margin-top: 32px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-contents {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .legal-contents a {
    min-height: 50px;
    justify-content: center;
    padding-inline: 12px;
    text-align: center;
    background: rgba(101, 221, 213, 0.08);
    border: 1px solid rgba(0, 170, 164, 0.22);
    border-radius: 12px;
  }

  .legal-copy {
    max-width: 760px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-navigation {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 14px 28px;
  }

  .footer-navigation a {
    width: fit-content;
  }

  .site-header[data-menu-open="true"] .primary-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation a,
  .navigation-support {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }

  .primary-navigation .header-download {
    min-height: 52px;
    margin: 8px 0 0;
    padding-inline: 20px;
    font-size: 16px;
  }

  .hero {
    min-height: 0;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    padding: 68px 0 24px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(51px, 8.5vw, 72px);
  }

  .hero-subheading,
  .hero-body {
    max-width: 680px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .hero-media {
    align-self: center;
    width: min(118%, 900px);
    margin: -26px 0 -6%;
  }

  .roundups-shell {
    padding-block: 60px;
  }

  .roundups-intro {
    margin: 0;
    text-align: left;
  }

  .roundups-intro h2,
  .roundups-intro p {
    max-width: 720px;
    margin-left: 0;
  }

  .roundups-intro h2 {
    white-space: normal;
  }

  .roundups-equation {
    max-width: 720px;
    margin: 42px 0 0;
    grid-template-columns: 38px minmax(0, 1fr) minmax(125px, 0.58fr);
    align-items: center;
    column-gap: 14px;
    row-gap: 12px;
  }

  .equation-term {
    display: contents;
  }

  .equation-value,
  .equation-roundup .equation-value {
    grid-column: 2;
    justify-self: start;
    font-size: clamp(66px, 10.5vw, 94px);
    line-height: 1;
  }

  .equation-label {
    grid-column: 3;
    justify-self: start;
    text-align: left;
    font-size: clamp(16px, 2.1vw, 19px);
  }

  .equation-purchase .equation-value,
  .equation-purchase .equation-label {
    grid-row: 1;
  }

  .equation-plus {
    grid-column: 1;
    grid-row: 2;
  }

  .equation-roundup .equation-value,
  .equation-roundup .equation-label {
    grid-row: 2;
  }

  .equation-equals {
    grid-column: 1;
    grid-row: 3;
  }

  .equation-result .equation-value,
  .equation-result .equation-label {
    grid-row: 3;
  }

  .equation-result .equation-value,
  .equation-equals {
    padding-top: 18px;
    border-top: 2px solid rgba(69, 97, 134, 0.6);
  }

  .equation-operator {
    align-self: stretch;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    color: #93a9bf;
    font-size: 52px;
  }

  .roundups-sequence {
    max-width: 720px;
    margin: 42px 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
  }

  .roundups-sequence svg {
    width: 28px;
    height: 20px;
    margin-left: 38px;
    transform: rotate(90deg);
  }

  .roundups-lower {
    margin-top: 32px;
    padding-top: 28px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "body"
      "clarification";
    row-gap: 18px;
  }

  .roundups-body,
  .roundups-clarification {
    max-width: 720px;
  }

  .portfolio-shell {
    padding-block: 64px 72px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "lead"
      "media"
      "features"
      "cta";
    row-gap: 0;
  }

  .portfolio-title {
    max-width: 720px;
    font-size: var(--section-title-size);
  }

  .portfolio-lead {
    max-width: 720px;
    margin-top: 22px;
  }

  .portfolio-media {
    margin-top: 38px;
  }

  .portfolio-features {
    margin-top: 28px;
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    border-top: 0;
  }

  .portfolio-feature {
    padding: 16px;
  }

  .portfolio-feature + .portfolio-feature {
    padding-left: 16px;
    border: 1px solid rgba(69, 97, 134, 0.16);
  }

  .portfolio-feature:last-child {
    padding-right: 16px;
  }

  .portfolio-cta {
    width: fit-content;
    min-width: 0;
    margin-top: 26px;
  }

  .wallet-accounts-shell {
    padding-block: 64px 72px;
  }

  .wallet-accounts-intro {
    display: block;
  }

  .wallet-accounts-intro h2 {
    max-width: 720px;
    font-size: var(--section-title-size);
    white-space: normal;
  }

  .wallet-accounts-intro p {
    max-width: 720px;
    margin-top: 22px;
    white-space: normal;
  }

  .wallet-accounts-groups {
    margin-top: 44px;
  }

  .wallet-accounts-clarification {
    margin-top: 52px;
  }

  .get-started-shell {
    padding-block: 64px 72px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "title"
      "steps"
      "cta";
  }

  .get-started h2 {
    align-self: auto;
    max-width: 720px;
    padding-bottom: 0;
    font-size: var(--section-title-size);
  }

  .get-started-steps {
    max-width: 760px;
    margin-top: 42px;
  }

  .get-started-cta {
    margin-top: 32px;
  }

  .downloads-shell {
    padding: 40px 0 72px;
  }

  .downloads-intro {
    max-width: 720px;
    margin-top: 38px;
  }

  .downloads-intro h2 {
    font-size: var(--section-title-size);
  }

  .download-cards {
    max-width: 720px;
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .download-card {
    min-height: 0;
    padding: 18px;
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .download-card-platform {
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
  }

  .download-platform-icon {
    width: 76px;
    height: 76px;
  }

  .download-platform-icon svg,
  .download-platform-apple svg,
  .download-platform-linux svg {
    width: 39px;
    height: 46px;
  }

}

@media (max-width: 720px) {
  .portfolio-media img {
    aspect-ratio: 1100 / 1430;
    border-radius: 12px;
  }
}

@media (max-width: 620px) {
  :root {
    --section-title-size: clamp(34px, 9.4vw, 39px);
    --section-lead-size: 17px;
  }

  :root {
    --header-height: 74px;
    --gutter: 26px;
    --radius-control: 14px;
  }

  .brand img {
    width: 184px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .primary-navigation {
    right: var(--gutter);
    left: var(--gutter);
  }

  .legal-intro-shell {
    padding-block: 36px 40px;
  }

  .legal-intro h1 {
    font-size: clamp(46px, 14vw, 58px);
  }

  .legal-intro-copy {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.52;
    white-space: normal;
  }

  .legal-layout {
    padding-block: 48px 64px;
    gap: 40px;
  }

  .legal-contents {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-contents a {
    min-height: 46px;
    justify-content: flex-start;
    text-align: left;
  }

  .legal-section h2 {
    margin-bottom: 20px;
    font-size: var(--section-title-size);
  }

  .legal-section h3 {
    margin-top: 30px;
    font-size: 20px;
  }

  .legal-section p {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-copy {
    padding: 51px 0 17px;
  }

  .hero-eyebrow {
    margin-bottom: 17px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(43px, 12.3vw, 56px);
    letter-spacing: -0.055em;
    line-height: 1.01;
  }

  .hero-subheading {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.48;
  }

  .hero-body {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 22px;
    font-size: 17px;
  }

  .button-link {
    width: fit-content;
    padding: 11px 2px;
    font-size: 16px;
  }

  .hero-proof {
    margin-top: 14px;
    font-size: 14px;
  }

  .hero-media {
    width: calc(100% + (2 * var(--gutter)));
    margin: -2px 0 0;
  }

  .roundups-shell {
    padding: 52px 0 56px;
  }

  .roundups-intro h2 {
    max-width: 350px;
    font-size: var(--section-title-size);
    letter-spacing: -0.05em;
    line-height: 1.02;
  }

  .roundups-intro p {
    margin-top: 18px;
    font-size: var(--section-lead-size);
    line-height: 1.45;
  }

  .roundups-equation {
    margin-top: 34px;
    grid-template-columns: 27px minmax(0, 1fr) 104px;
    column-gap: 8px;
    row-gap: 10px;
  }

  .equation-value,
  .equation-roundup .equation-value {
    font-size: clamp(49px, 14.3vw, 58px);
    letter-spacing: -0.065em;
  }

  .equation-label {
    font-size: 14px;
    line-height: 1.3;
  }

  .equation-operator {
    font-size: 39px;
  }

  .equation-result .equation-value,
  .equation-equals {
    padding-top: 15px;
  }

  .roundups-sequence {
    margin-top: 38px;
    align-items: center;
    font-size: 16px;
    text-align: center;
  }

  .roundups-sequence svg {
    margin-left: 0;
  }

  .roundups-lower {
    margin-top: 28px;
    padding-top: 25px;
    row-gap: 17px;
  }

  .roundups-body {
    font-size: 16px;
    line-height: 1.5;
  }

  .roundups-clarification {
    font-size: 14px;
    line-height: 1.45;
  }

  .portfolio-shell {
    padding: 52px 0 60px;
  }

  .portfolio-title {
    max-width: 340px;
    font-size: var(--section-title-size);
    line-height: 1.02;
  }

  .portfolio-lead {
    margin-top: 18px;
    font-size: var(--section-lead-size);
    line-height: 1.48;
  }

  .portfolio-media {
    margin-top: 30px;
  }

  .portfolio-features {
    margin-top: 22px;
  }

  .portfolio-feature {
    padding: 14px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .portfolio-feature + .portfolio-feature {
    padding-left: 14px;
  }

  .portfolio-feature:last-child {
    padding-right: 14px;
  }

  .portfolio-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .portfolio-feature-icon svg {
    width: 21px;
    height: 21px;
  }

  .portfolio-feature h3 {
    font-size: 18px;
  }

  .portfolio-feature p {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.46;
  }

  .portfolio-cta {
    width: fit-content;
    margin-top: 22px;
  }

  .wallet-accounts-shell {
    padding: 52px 0 60px;
  }

  .wallet-accounts-intro h2 {
    max-width: 340px;
    font-size: var(--section-title-size);
    line-height: 1.02;
  }

  .wallet-accounts-intro p {
    margin-top: 18px;
    font-size: var(--section-lead-size);
    line-height: 1.48;
  }

  .wallet-accounts-groups {
    margin-top: 36px;
    gap: 44px;
  }

  .wallet-account-group {
    gap: 22px;
  }

  .wallet-strips {
    padding-inline: 4px;
    gap: 8px;
  }

  .wallet-strip {
    width: calc(100% - 6px);
    min-height: 62px;
    padding: 9px 10px;
    grid-template-columns: 34px minmax(70px, 1fr) auto auto;
    gap: 7px;
    border-radius: 12px;
  }

  .wallet-strip-ethereum {
    margin-left: 6px;
  }

  .wallet-strip img {
    width: 34px;
    height: 34px;
  }

  .wallet-strip-identity {
    font-size: 13px;
  }

  .wallet-strip-identity strong {
    font-size: 13px;
  }

  .wallet-strip-identity small {
    margin-left: 2px;
    font-size: 10px;
  }

  .wallet-strip-action {
    min-width: 50px;
    min-height: 32px;
    padding-inline: 6px;
    font-size: 11px;
    border-radius: 9px;
  }

  .roundup-settings-inner {
    padding: 16px;
  }

  .roundup-options span {
    min-height: 58px;
    font-size: 11px;
  }

  .connected-account {
    min-height: 80px;
    padding: 15px 14px 15px 20px;
    gap: 10px;
    border-radius: 12px;
  }

  .connected-account::before {
    width: 6px;
  }

  .connected-account strong {
    font-size: 14px;
  }

  .connected-account b {
    font-size: 16px;
  }

  .connected-status {
    gap: 6px;
    font-size: 11px;
  }

  .connected-status i {
    width: 8px;
    height: 8px;
  }

  .wallet-account-copy {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .wallet-account-icon {
    width: 38px;
    height: 38px;
  }

  .wallet-account-icon svg {
    width: 34px;
    height: 34px;
  }

  .wallet-account-copy h3 {
    font-size: 18px;
  }

  .wallet-account-copy p {
    margin-top: 7px;
    font-size: 15px;
    line-height: 1.46;
  }

  .wallet-accounts-clarification {
    margin-top: 44px;
    padding-top: 24px;
    font-size: 14px;
    line-height: 1.48;
  }

  .get-started-shell {
    padding: 52px 0 60px;
  }

  .get-started h2 {
    max-width: 340px;
    font-size: var(--section-title-size);
    line-height: 1.02;
  }

  .get-started-steps {
    margin-top: 34px;
  }

  .get-started-step {
    padding: 26px 0;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    grid-template-areas:
      "number title icon"
      "number body body";
    column-gap: 12px;
  }

  .get-started-step::before {
    font-size: 45px;
  }

  .get-started-step h3 {
    align-self: center;
    font-size: 18px;
    line-height: 1.25;
  }

  .get-started-step p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.46;
  }

  .get-started-copy-break {
    display: none;
  }

  .get-started-step-icons {
    align-self: start;
    gap: 4px;
  }

  .get-started-step-icons svg {
    width: 46px;
    height: 46px;
    padding: 8px;
  }

  .get-started-step-icons-pair svg {
    width: 36px;
    height: 36px;
    padding: 7px;
  }

  .get-started-step-icons i {
    font-size: 18px;
  }

  .get-started-cta {
    margin-top: 24px;
  }

  .downloads-shell {
    padding: 34px 0 60px;
  }

  .downloads-provenance {
    padding-bottom: 26px;
    font-size: 14px;
  }

  .downloads-intro {
    margin-top: 30px;
  }

  .downloads-intro h2 {
    max-width: 340px;
    margin-inline: auto;
    font-size: var(--section-title-size);
    line-height: 1.02;
  }

  .downloads-intro > p:not(.downloads-patch) {
    max-width: 300px;
    margin: 16px auto 0;
    font-size: var(--section-lead-size);
    line-height: 1.48;
  }

  .download-cards {
    margin-top: 30px;
    gap: 12px;
  }

  .download-card {
    padding: 14px;
    gap: 13px;
    border-radius: 14px;
  }

  .download-card-platform {
    gap: 15px;
  }

  .download-platform-icon {
    width: 66px;
    height: 66px;
  }

  .download-platform-icon svg,
  .download-platform-apple svg,
  .download-platform-linux svg {
    width: 34px;
    height: 40px;
  }

  .download-card h3 {
    font-size: 20px;
  }

  .download-card-action {
    min-height: 54px;
    font-size: 16px;
  }

  .download-release {
    margin-top: 28px;
    padding-top: 24px;
  }

  .download-release-line {
    font-size: clamp(10.5px, 2.75vw, 12px);
    letter-spacing: -0.02em;
  }

  .download-release-line span::before {
    margin: 0 5px;
  }

  .faq-shell {
    padding: 52px 0 60px;
  }

  .faq h2 {
    max-width: 350px;
    font-size: var(--section-title-size);
    line-height: 1.02;
  }

  .faq-accordion {
    margin-top: 30px;
  }

  .faq-item[open] {
    margin-bottom: 4px;
    border-radius: 14px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 17px 12px;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 10px;
    border-radius: 12px;
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.28;
  }

  .faq-toggle {
    width: 38px;
    height: 38px;
  }

  .faq-toggle::before,
  .faq-toggle::after {
    width: 18px;
  }

  .faq-answer {
    padding: 0 50px 22px 12px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 1.5;
  }

  .faq-cta {
    margin-top: 28px;
  }

  .site-footer {
    --footer-bottom-padding: 28px;
  }

  .footer-shell {
    padding-top: 28px;
  }

  .footer-top {
    gap: 26px;
  }

  .footer-brand img {
    width: min(100%, 260px);
  }

  .footer-navigation {
    gap: 13px 22px;
  }

  .footer-navigation a,
  .footer-support {
    font-size: 14px;
    white-space: normal;
  }

  .support-widget {
    --support-normal-bottom: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
  }

  .support-launcher {
    width: 52px;
    height: 52px;
  }

  .support-widget[data-consent-visible="true"] .support-launcher:not(.is-open) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .support-panel {
    bottom: calc(64px + var(--support-consent-clearance));
    width: calc(100vw - 24px);
    height: min(430px, calc(100dvh - var(--support-consent-clearance) - 100px));
    min-height: 280px;
    border-radius: 16px;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-social {
    order: 1;
  }

  .footer-bottom p {
    order: 2;
    font-size: 13px;
  }

  .consent-banner {
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: calc(100% - 24px);
    padding: 13px;
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 14px;
  }

  .consent-banner p {
    padding-left: 0;
    font-size: 14px;
  }

  .consent-accept {
    width: 100%;
    min-height: 48px;
  }

}

@media (max-width: 380px) {
  .brand img {
    width: 170px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .desktop-break {
    display: none;
  }
}

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

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

  .wallet-accounts.is-reveal-ready .wallet-account-group {
    opacity: 1;
    transform: none;
  }
}
