:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #111113;
  --muted: #646469;
  --soft: #f5f5f7;
  --line: rgba(18, 18, 20, 0.1);
  --glass: rgba(255, 255, 255, 0.76);
  --shadow: 0 32px 80px rgba(20, 20, 30, 0.14);
  --ump: #0a7d4f;
  --ump-soft: #e9f7ef;
  --quid: #1d63d9;
  --quid-soft: #edf4ff;
  --radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#apps {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.is-scrolled .site-header {
  border-bottom-color: rgba(18, 18, 20, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

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

a:focus-visible {
  outline: 3px solid rgba(0, 102, 204, 0.42);
  outline-offset: 4px;
  border-radius: 8px;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.35);
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 650;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(10, 10, 14, 0.12);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  color: #323236;
  font-size: 13px;
  font-weight: 500;
}

.nav-links a,
.site-footer a,
.nav-action {
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover,
.nav-action:hover {
  color: #000000;
  opacity: 0.72;
}

.nav-action {
  justify-self: end;
  padding: 7px 13px;
  border-radius: 999px;
  background: #111113;
  color: #ffffff;
  font-size: 12px;
  font-weight: 650;
}

.hero {
  min-height: 92svh;
  padding: 88px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 10vw, 128px);
  line-height: 0.88;
  font-weight: 760;
  letter-spacing: 0;
}

.hero p {
  width: min(650px, 100%);
  margin: 20px auto 0;
  color: #2f2f34;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.16;
  font-weight: 540;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-dark {
  background: #111113;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(17, 17, 19, 0.18);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: #111113;
}

.hero-stage {
  position: relative;
  width: min(920px, 100%);
  height: clamp(300px, 42svh, 520px);
  margin-top: 30px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: min(780px, 88vw);
  height: 154px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(10, 125, 79, 0.12), rgba(29, 99, 217, 0.13));
  filter: blur(38px);
}

.hero-reflection {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(760px, 86vw);
  height: 74px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(18, 18, 20, 0.08);
  filter: blur(22px);
}

.phone {
  position: relative;
  overflow: hidden;
  aspect-ratio: 430 / 932;
  border-radius: clamp(26px, 5.4vw, 46px);
  background: #111113;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: clamp(7px, 1.2vw, 12px) solid #111113;
  border-radius: inherit;
  pointer-events: none;
}

.phone::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: clamp(9px, 1.7vw, 15px);
  left: 50%;
  width: 30%;
  height: clamp(7px, 1.2vw, 12px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: #111113;
  pointer-events: none;
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-phone {
  position: absolute;
  bottom: -300px;
  width: clamp(178px, 24vw, 276px);
}

.hero-phone-left {
  left: calc(50% - min(330px, 36vw));
  transform: rotate(-7deg);
}

.hero-phone-right {
  right: calc(50% - min(330px, 36vw));
  transform: rotate(7deg);
}

.phone-umpcall {
  box-shadow: 0 38px 95px rgba(10, 125, 79, 0.2), var(--shadow);
}

.phone-quidit {
  box-shadow: 0 38px 95px rgba(29, 99, 217, 0.2), var(--shadow);
}

.intro-band {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 58px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.intro-band p {
  max-width: 930px;
  margin: 0 auto;
  color: #202024;
  font-size: clamp(32px, 6vw, 67px);
  line-height: 1.03;
  font-weight: 720;
  letter-spacing: 0;
}

.apps {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 30px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.support h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  font-weight: 730;
  letter-spacing: 0;
}

.section-heading p,
.support p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.26;
  font-weight: 500;
}

.product {
  min-height: 680px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(32px, 6vw, 76px);
}

.product-umpcall {
  background:
    linear-gradient(135deg, rgba(233, 247, 239, 0.96), rgba(255, 255, 255, 0.95) 46%, rgba(243, 246, 244, 0.94));
}

.product-quidit {
  background:
    linear-gradient(135deg, rgba(237, 244, 255, 0.98), rgba(255, 255, 255, 0.95) 46%, rgba(244, 246, 250, 0.94));
}

.product-copy {
  position: relative;
  z-index: 2;
}

.app-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

a.app-title {
  width: max-content;
  color: inherit;
}

a.app-title:hover h3 {
  color: #1d1d1f;
}

.app-logo {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(20, 20, 30, 0.15);
}

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

.app-logo-umpcall {
  position: relative;
  overflow: visible;
  background: linear-gradient(145deg, #0f8d5e, #064b35);
}

.app-logo-umpcall img {
  position: relative;
  z-index: 2;
  width: 136%;
  height: 136%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-10%);
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.18));
}

.app-logo-umpcall::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8%;
  height: 16%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  filter: blur(6px);
  pointer-events: none;
}

.app-logo-quidit {
  background: #ffffff;
}

.app-title h3 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  font-weight: 735;
  letter-spacing: 0;
}

.product-tag {
  margin: 30px 0 -16px;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.product-tag-quidit {
  color: var(--quid);
}

.product-tag-umpcall {
  color: var(--ump);
}

.product-line {
  margin: 32px 0 0;
  color: #111113;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  font-weight: 735;
  letter-spacing: 0;
}

.product-detail {
  max-width: 460px;
  margin: 18px 0 0;
  color: #5b5b60;
  font-size: 21px;
  line-height: 1.34;
  font-weight: 500;
}

.product-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: #0066cc;
  font-size: 18px;
  font-weight: 600;
}

.text-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: 2px 0 0 7px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-visual {
  position: relative;
  min-height: 560px;
}

.product-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: min(520px, 90%);
  height: 92px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(18, 18, 20, 0.1);
  filter: blur(20px);
}

.product-visual-umpcall::after,
.product-visual-quidit::after {
  content: "";
  position: absolute;
  inset: 18% -4% 18% auto;
  width: 58%;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.3;
}

.product-visual-umpcall::after {
  background: rgba(10, 125, 79, 0.3);
}

.product-visual-quidit::after {
  background: rgba(29, 99, 217, 0.28);
}

.phone-large,
.phone-small {
  position: absolute;
  z-index: 1;
}

.phone-large {
  right: clamp(96px, 13vw, 146px);
  bottom: 10px;
  width: clamp(220px, 22vw, 264px);
}

.phone-small {
  right: 0;
  bottom: 66px;
  width: clamp(165px, 17vw, 204px);
  transform: rotate(6deg);
}

.product-quidit .phone-small {
  transform: rotate(-6deg);
}

.support {
  width: min(1120px, calc(100% - 40px));
  margin: 56px auto 0;
  padding: 44px 0 58px;
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.support h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1;
  font-weight: 730;
  letter-spacing: 0;
}

.support p {
  max-width: 340px;
  margin-left: 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.3;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.app-store-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-card {
  min-height: 88px;
  padding: 18px 19px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfbfc, #f5f5f7);
  color: #1f1f23;
  font-size: 15px;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.support-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 18, 20, 0.2);
  background: #ffffff;
}

.app-store-card {
  min-height: 210px;
}

.app-store-card h3 {
  margin: 0;
  color: #111113;
  font-size: 21px;
  line-height: 1.1;
}

.app-store-card a {
  color: #0066cc;
  font-size: 16px;
  font-weight: 600;
}

.app-store-card a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-card > img,
.mail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.mail-icon {
  display: grid;
  place-items: center;
  background: #111113;
  color: #ffffff;
}

.mail-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mail-icon svg.github-icon {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #6b6b70;
  font-size: 13px;
  font-weight: 500;
}

.site-footer nav {
  display: flex;
  gap: 26px;
}

.site-footer p {
  justify-self: end;
  margin: 0;
}

.app-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0 88px;
}

.app-landing-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.app-landing-copy {
  position: relative;
  z-index: 2;
}

.app-landing-copy .app-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.app-landing-copy h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.92;
  font-weight: 760;
  letter-spacing: 0;
}

.app-landing-line {
  margin: 30px 0 0;
  color: #111113;
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: 0.98;
  font-weight: 735;
  letter-spacing: 0;
}

.app-landing-detail {
  max-width: 540px;
  margin: 20px 0 0;
  color: #5c5c62;
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.32;
  font-weight: 500;
}

.app-landing-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.app-landing-actions-secondary {
  margin-top: 18px;
}

.store-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px 9px 13px;
  border: 1px solid rgba(18, 18, 20, 0.12);
  border-radius: 8px;
  background: #111113;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(17, 17, 19, 0.15);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(17, 17, 19, 0.18);
}

.store-button-disabled {
  cursor: default;
  background: #f7f7f9;
  color: #8a8a91;
  box-shadow: none;
}

.store-button-disabled:hover {
  transform: none;
  box-shadow: none;
}

.store-icon {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
}

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

.store-icon-play svg {
  fill: currentColor;
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}

.store-button small {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 560;
  opacity: 0.78;
}

.store-button strong {
  font-size: 18px;
  font-weight: 720;
}

.app-landing-visual {
  position: relative;
  min-height: 620px;
}

.app-landing-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 36px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(10, 125, 79, 0.11), rgba(29, 99, 217, 0.12));
  filter: blur(38px);
}

.app-phone-primary,
.app-phone-secondary {
  position: absolute;
  bottom: 0;
  width: clamp(218px, 24vw, 286px);
}

.app-phone-primary {
  right: clamp(118px, 15vw, 172px);
  z-index: 2;
  transform: rotate(-6deg);
}

.app-phone-secondary {
  right: clamp(16px, 2vw, 28px);
  bottom: 64px;
  width: clamp(178px, 19vw, 230px);
  z-index: 1;
  transform: rotate(7deg);
  opacity: 0.96;
}

.app-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 44px 0 24px;
  border-top: 1px solid var(--line);
}

.app-feature {
  padding: 22px 0;
}

.app-feature strong {
  display: block;
  color: #111113;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  font-weight: 720;
}

.app-feature span {
  display: block;
  max-width: 320px;
  margin-top: 10px;
  color: #5f5f65;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.app-shot-band {
  margin-top: 42px;
  padding: clamp(38px, 5.5vw, 62px);
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: clamp(30px, 4.5vw, 58px);
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.app-main-quidit .app-shot-band {
  background: linear-gradient(135deg, rgba(237, 244, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.app-main-umpcall .app-shot-band {
  background: linear-gradient(135deg, rgba(233, 247, 239, 0.98), rgba(255, 255, 255, 0.96));
}

.app-shot-copy h2 {
  margin: 0;
  color: #111113;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 0.98;
  font-weight: 735;
  letter-spacing: 0;
}

.app-shot-copy p {
  margin: 18px 0 0;
  color: #5b5b61;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.34;
  font-weight: 500;
}

.app-shot-rail {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 22px);
  padding: 22px 0;
}

.app-shot-phone {
  position: relative;
  flex: 0 0 auto;
  width: clamp(132px, 12vw, 174px);
}

.app-shot-phone:nth-child(1) {
  transform: translateY(18px) rotate(-4deg);
}

.app-shot-phone:nth-child(2) {
  z-index: 2;
  width: clamp(150px, 13.8vw, 198px);
  transform: translateY(-8px);
}

.app-shot-phone:nth-child(3) {
  transform: translateY(18px) rotate(4deg);
}

.app-shot-rail-duo {
  position: relative;
  display: block;
  min-height: 540px;
  padding: 0;
  overflow: visible;
}

.app-shot-rail-duo::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 20px;
  left: 8%;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(12, 118, 72, 0.14), rgba(26, 121, 214, 0.12));
  filter: blur(30px);
}

.app-shot-rail-duo .app-shot-phone {
  position: absolute;
  bottom: 18px;
}

.app-shot-rail-duo .app-shot-phone:nth-child(1) {
  left: 18%;
  z-index: 2;
  width: clamp(176px, 16vw, 232px);
  transform: translateX(-14%) translateY(-12px) rotate(-3deg);
}

.app-shot-rail-duo .app-shot-phone:nth-child(2) {
  right: 9%;
  z-index: 1;
  width: clamp(150px, 13.5vw, 196px);
  transform: translateY(34px) rotate(5deg);
  opacity: 0.96;
}

.legal-main {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0 88px;
}

.legal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: 38px 0 48px;
}

.legal-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 18, 20, 0.16), transparent);
}

.legal-hero-copy {
  min-width: 0;
}

.legal-kicker {
  margin: 0 0 18px;
  color: #127b61;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.legal-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.legal-page-icon {
  flex: 0 0 auto;
}

.legal-page-icon.app-logo {
  width: 62px;
  height: 62px;
  border-radius: 15px;
}

.legal-main h1,
.legal-hero h1 {
  margin: 0;
  color: #111113;
  font-size: clamp(46px, 7.4vw, 76px);
  line-height: 0.98;
  font-weight: 740;
  letter-spacing: 0;
}

.legal-hero:has(.legal-title-row) h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.legal-main .updated,
.legal-hero .updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.38;
  font-weight: 500;
  max-width: 720px;
}

.legal-meta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: #3f3f44;
  font-size: 13px;
  font-weight: 650;
}

.legal-hero-card {
  align-self: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 247, 249, 0.96), #ffffff);
  box-shadow: 0 20px 54px rgba(18, 18, 24, 0.08);
}

.legal-hero-card h2 {
  margin: 0;
  color: #111113;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 720;
}

.legal-hero-card p {
  margin: 12px 0 0;
  color: #5e5e64;
  font-size: 15px;
  line-height: 1.44;
  font-weight: 520;
}

.legal-nav-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-nav-strip a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #1f1f23;
  font-size: 14px;
  font-weight: 650;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.legal-nav-strip a:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 18, 20, 0.2);
  background: #fdfdfd;
}

.legal-panel {
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.legal-hero + .legal-panel {
  margin-top: 42px;
  padding-top: 0;
  border-top: 0;
}

.legal-panel h2 {
  margin: 0 0 12px;
  color: #111113;
  font-size: clamp(24px, 2.7vw, 30px);
  line-height: 1.08;
  font-weight: 690;
}

.legal-panel p,
.legal-panel li {
  color: #49494f;
  font-size: 17px;
  line-height: 1.54;
  font-weight: 470;
}

.legal-panel p {
  margin: 0 0 16px;
}

.legal-panel > p,
.legal-panel > ul,
.legal-panel > .note-band,
.legal-panel > .contact-panel {
  max-width: 880px;
}

.legal-panel ul {
  margin: 0;
  padding-left: 0;
}

.legal-panel .plain-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 24px;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #111113;
}

.legal-summary-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

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

.summary-card,
.policy-card {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfbfc, #f5f5f7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.summary-card strong,
.policy-card strong {
  display: block;
  color: #111113;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.summary-card span,
.policy-card span {
  display: block;
  margin-top: 9px;
  color: #5f5f65;
  font-size: 14.5px;
  line-height: 1.42;
  font-weight: 520;
}

.note-band {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid #111113;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f7f9, #ffffff);
  color: #424248;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 530;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0 4px;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.contact-panel p {
  margin: 0;
}

.contact-panel .button {
  min-width: 128px;
  flex: 0 0 auto;
  justify-self: end;
  width: max-content;
  white-space: nowrap;
}

.legal-main a {
  color: #0066cc;
  font-weight: 600;
}

.legal-main .legal-nav-strip a {
  color: #1f1f23;
  font-weight: 650;
}

.legal-main .button {
  font-weight: 650;
}

.legal-main .button-dark {
  color: #ffffff;
}

.legal-main .button-light {
  color: #111113;
}

.legal-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.link-card {
  min-height: 214px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfbfc, #f5f5f7);
  box-shadow: 0 18px 48px rgba(18, 18, 24, 0.08);
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--quid), var(--ump));
  opacity: 0.78;
}

.link-card .app-logo {
  width: 44px;
  height: 44px;
  border-radius: 11px;
}

.link-card h2 {
  margin: 0;
}

.link-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
}

.link-card a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  transition: transform 160ms ease, border-color 160ms ease;
}

.link-card a:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 204, 0.3);
}

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

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-stage {
    height: clamp(350px, 82vw, 520px);
  }

  .hero-phone {
    width: clamp(178px, 42vw, 270px);
    bottom: -106px;
  }

  .hero-phone-left {
    left: 9%;
  }

  .hero-phone-right {
    right: 9%;
  }

  .intro-band {
    padding-top: 62px;
  }

  .product,
  .support,
  .app-landing-hero,
  .app-shot-band,
  .legal-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product {
    min-height: auto;
    padding-bottom: 0;
  }

  .product-visual {
    min-height: 560px;
    margin-top: 8px;
  }

  .phone-large {
    right: 42%;
    transform: translateX(50%);
  }

  .phone-small {
    right: 14%;
  }

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

  .app-main {
    padding-top: 96px;
  }

  .app-landing-hero {
    min-height: auto;
  }

  .app-landing-visual {
    min-height: 560px;
    margin-top: 10px;
  }

  .app-phone-primary {
    right: 42%;
    transform: translateX(50%) rotate(-5deg);
  }

  .app-phone-secondary {
    right: 14%;
  }

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

  .app-shot-rail {
    min-height: 430px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 18px 6px 4px;
    scrollbar-width: none;
  }

  .app-shot-rail::-webkit-scrollbar {
    display: none;
  }

  .app-shot-rail-duo {
    min-height: 430px;
    overflow: visible;
    padding: 0;
  }

  .support-card {
    min-height: 92px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .site-footer {
    padding: 24px 0;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p {
    justify-self: start;
  }

  .app-store-card {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

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

  .legal-summary-grid,
  .policy-grid,
  .policy-grid.two {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    width: calc(100% - 24px);
    height: 50px;
  }

  .brand span {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: calc(100svh - 24px);
    padding-top: 76px;
    padding-inline: 14px;
  }

  .hero p {
    max-width: 330px;
  }

  .hero-stage {
    height: min(310px, 43svh);
    width: min(420px, 100%);
    margin-top: 24px;
  }

  .hero-phone {
    width: min(44vw, 172px);
    bottom: -58px;
  }

  .hero-phone-left {
    left: 2%;
    transform: rotate(-6deg);
  }

  .hero-phone-right {
    right: 2%;
    transform: rotate(6deg);
  }

  .intro-band,
  .apps,
  .support,
  .app-main,
  .site-footer {
    width: calc(100% - 24px);
  }

  .intro-band p {
    text-align: left;
  }

  .section-heading {
    text-align: left;
  }

  .product {
    margin-top: 14px;
    padding: 26px 18px 0;
  }

  .app-title {
    gap: 12px;
  }

  .app-title > img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .app-logo {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .product-detail {
    font-size: 18px;
  }

  .app-landing-copy .app-logo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .app-landing-line {
    font-size: clamp(38px, 11vw, 56px);
  }

  .app-landing-visual {
    min-height: clamp(380px, 96vw, 430px);
    margin-top: -6px;
  }

  .app-phone-primary {
    width: clamp(184px, 52vw, 204px);
    right: 39%;
    bottom: 20px;
  }

  .app-phone-secondary {
    width: clamp(138px, 40vw, 154px);
    right: 7%;
    bottom: 76px;
  }

  .app-feature-row {
    padding-top: 30px;
  }

  .app-shot-band {
    padding: 28px 18px;
  }

  .app-shot-rail {
    position: relative;
    display: block;
    min-height: 330px;
    overflow: visible;
    padding: 0;
  }

  .app-shot-phone {
    position: absolute;
    bottom: 14px;
    width: 112px;
  }

  .app-shot-phone:nth-child(1) {
    left: 0;
    transform: translateY(18px) rotate(-5deg);
  }

  .app-shot-phone:nth-child(2) {
    left: 50%;
    width: 136px;
    transform: translateX(-50%) translateY(-8px);
  }

  .app-shot-phone:nth-child(3) {
    right: 0;
    transform: translateY(18px) rotate(5deg);
  }

  .app-shot-rail-duo {
    min-height: 348px;
    margin-top: 34px;
  }

  .app-shot-rail-duo::before {
    right: 10%;
    bottom: 18px;
    left: 10%;
    height: 64px;
  }

  .app-shot-rail-duo .app-shot-phone {
    width: 148px;
  }

  .app-shot-rail-duo .app-shot-phone:nth-child(1) {
    left: 26px;
    bottom: 10px;
    transform: translateY(-8px) rotate(-3deg);
  }

  .app-shot-rail-duo .app-shot-phone:nth-child(2) {
    left: auto;
    right: 24px;
    bottom: 8px;
    width: 136px;
    transform: translateY(20px) rotate(5deg);
  }

  .product-visual {
    min-height: 500px;
  }

  .phone-large {
    width: 212px;
    right: 44%;
  }

  .phone-small {
    width: 160px;
    right: 1%;
    bottom: 56px;
  }

  .site-footer nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .legal-main {
    width: calc(100% - 24px);
    padding-top: 104px;
  }

  .legal-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .legal-main h1,
  .legal-hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

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

  .legal-hero {
    padding-top: 12px;
  }

  .legal-hero-card,
  .summary-card,
  .policy-card,
  .contact-panel,
  .link-card {
    padding: 18px;
  }
}
