:root {
  --bg: #ffffff;
  --ink: #161616;
  --paper: #ffffff;
  --surface: #fbfaf7;
  --muted: #746d64;
  --line: rgba(22, 22, 22, 0.12);
  --white: #ffffff;
  --gold: #b8893b;
  --sage: #6f8a63;
  --shadow: 0 22px 60px rgba(34, 25, 15, 0.12);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

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

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

.home-page {
  --home-bg: #faf9fe;
  --home-surface: #ffffff;
  --home-container: #eeedf3;
  --home-container-low: #f4f3f8;
  --home-container-high: #e9e7ed;
  --home-text: #1a1b1f;
  --home-muted: #414755;
  --home-faint: #717786;
  --home-outline: #c1c6d7;
  --home-primary: #0058bc;
  --home-primary-soft: #d8e2ff;
  --home-orange: #c64f00;
  background: var(--home-bg);
  color: var(--home-text);
}

.home-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 3vw, 32px);
  background: rgba(250, 249, 254, 0.86);
  border-bottom: 1px solid rgba(193, 198, 215, 0.36);
  box-shadow: 0 2px 10px rgba(26, 27, 31, 0.08);
  backdrop-filter: blur(14px);
}

.home-brand,
.home-nav-links {
  display: flex;
  align-items: center;
}

.home-brand {
  gap: 10px;
  color: var(--home-text);
  font-size: 20px;
  font-weight: 800;
}

.home-brand-mark {
  width: 24px;
  height: 24px;
  color: var(--home-primary);
}

.home-brand-mark svg,
.home-grid-view svg,
.home-platform svg,
.home-placeholder-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-nav-links {
  gap: clamp(16px, 2.4vw, 28px);
  color: var(--home-muted);
  font-size: 14px;
}

.home-nav-links a:first-child {
  color: var(--home-primary);
  font-weight: 760;
}

.home-nav-links a:hover {
  color: var(--home-primary);
}

.home-download {
  min-width: 126px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--home-primary);
  color: #ffffff !important;
  font-weight: 760;
}

.home-main {
  padding: 128px clamp(20px, 3vw, 32px) 80px;
}

.home-hero,
.home-section,
.home-footer {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.home-hero {
  position: relative;
  min-height: 360px;
  margin-bottom: 74px;
  overflow: hidden;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 5px 22px;
  border-radius: 999px;
  background: var(--home-primary-soft);
  color: #001a41;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 650;
}

.home-hero h1 {
  max-width: 920px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 820;
}

.home-hero p {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.62;
}

.home-hero strong {
  color: var(--home-primary);
  font-weight: 820;
}

.home-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  min-height: 72px;
  margin-top: 58px;
  padding: 0 34px;
  border-radius: 14px;
  background: var(--home-primary);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 88, 188, 0.18);
}

.home-hero-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(0, 88, 188, 0.06);
  filter: blur(32px);
}

.home-section {
  margin-bottom: 80px;
}

.home-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.home-section-heading h2,
.home-story h2,
.home-updates h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 760;
}

.home-grid-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.home-grid-view svg {
  width: 18px;
  height: 18px;
}

.home-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-app-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(193, 198, 215, 0.82);
  box-shadow: 0 10px 24px rgba(26, 27, 31, 0.04);
  backdrop-filter: blur(12px);
}

.home-app-card.is-active {
  border-color: rgba(0, 88, 188, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(0, 88, 188, 0.08),
    0 10px 24px rgba(0, 88, 188, 0.06);
}

.home-app-card.is-muted {
  border-style: dashed;
  border-width: 2px;
  background: rgba(244, 243, 248, 0.42);
  color: var(--home-faint);
}

.home-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.home-app-icon,
.home-placeholder-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 18px;
}

.home-app-icon {
  box-shadow: 0 14px 28px rgba(0, 88, 188, 0.16);
  object-fit: cover;
}

.home-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--home-container-high);
  color: var(--home-text);
  font-size: 12px;
  font-weight: 650;
}

.home-platform svg {
  width: 14px;
  height: 14px;
}

.home-app-card h3 {
  margin: 0 0 5px;
  font-size: 22px;
  line-height: 1.25;
}

.home-card-tagline {
  margin: 0 0 16px;
  color: var(--home-primary);
  font-weight: 760;
}

.home-card-status {
  margin: 0 0 14px;
  color: rgba(113, 119, 134, 0.72);
  font-style: italic;
}

.home-card-copy {
  flex: 1;
  margin: 0 0 28px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.55;
}

.home-app-card.is-muted .home-card-copy {
  color: rgba(113, 119, 134, 0.6);
}

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

.home-card-primary,
.home-card-secondary,
.home-muted-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 760;
}

.home-card-primary {
  background: var(--home-primary);
  color: #ffffff;
}

.home-card-secondary {
  border: 1px solid var(--home-outline);
  background: rgba(255, 255, 255, 0.52);
}

.home-placeholder-icon {
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(193, 198, 215, 0.28);
  color: var(--home-faint);
  font-size: 38px;
}

.home-placeholder-icon svg {
  width: 32px;
  height: 32px;
}

.home-muted-action {
  width: 100%;
  background: rgba(193, 198, 215, 0.12);
  color: var(--home-faint);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.home-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px);
  border-radius: 32px;
  background: var(--home-container);
  overflow: hidden;
}

.home-story-copy {
  max-width: 620px;
}

.home-story p {
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.62;
}

.home-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: var(--home-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-style: italic;
}

.home-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 36%, #ffd9b3 0 18%, transparent 19%),
    linear-gradient(135deg, #003d82, #00a7f5);
  border: 2px solid var(--home-container);
}

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

.home-value-grid article {
  min-height: 126px;
  padding: 24px;
  border-radius: 14px;
  background: var(--home-surface);
  box-shadow:
    0 3px 8px rgba(26, 27, 31, 0.06),
    0 14px 24px rgba(26, 27, 31, 0.06);
  transition: transform 180ms ease;
}

.home-value-grid article:nth-child(1) {
  transform: rotate(-2deg);
}

.home-value-grid article:nth-child(2) {
  transform: rotate(3deg);
}

.home-value-grid article:nth-child(3) {
  transform: rotate(1deg);
}

.home-value-grid article:nth-child(4) {
  transform: rotate(-3deg);
}

.home-value-grid article:hover {
  transform: rotate(0deg) translateY(-2px);
}

.home-value-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--home-primary);
  font-size: 24px;
  font-weight: 800;
}

.home-value-grid article:nth-child(2) span {
  color: var(--home-orange);
}

.home-value-grid article:nth-child(3) span {
  color: #ba3d00;
}

.home-value-grid article:nth-child(4) span {
  color: var(--home-text);
}

.home-value-grid h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.home-value-grid p {
  margin: 0;
  color: var(--home-muted);
  font-size: 12px;
}

.home-updates {
  text-align: center;
}

.home-updates p {
  margin: 14px 0 48px;
  color: var(--home-muted);
}

.home-update-form {
  width: min(100%, 450px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 6px;
  margin: 0 auto;
}

.home-update-form input,
.home-update-form button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  font: inherit;
}

.home-update-form input {
  min-width: 0;
  padding: 0 24px;
  background: var(--home-container-high);
  color: var(--home-text);
}

.home-update-form input:focus {
  outline: 2px solid rgba(0, 88, 188, 0.45);
}

.home-update-form button {
  background: var(--home-primary);
  color: #ffffff;
  font-weight: 760;
}

.home-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 48px clamp(20px, 3vw, 32px);
  color: var(--home-faint);
}

.home-footer-brand {
  display: block;
  margin-bottom: 6px;
  color: var(--home-primary);
  font-size: 20px;
  font-weight: 820;
}

.home-footer p {
  margin: 0;
  font-size: 12px;
}

.home-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
}

.home-footer a:hover {
  color: var(--home-primary);
}

.st-page {
  --st-bg: #f5f5f7;
  --st-surface: #ffffff;
  --st-container: #e9e7ed;
  --st-container-soft: #eef2fb;
  --st-text: #1a1b1f;
  --st-muted: #414755;
  --st-faint: #717786;
  --st-line: #c1c6d7;
  --st-primary: #0058bc;
  --st-primary-bright: #0070eb;
  background: var(--st-bg);
  color: var(--st-text);
}

.lang-en .lang-vi-content,
.lang-vi .lang-en-content {
  display: none;
}

.st-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 3vw, 32px);
  background: rgba(250, 249, 254, 0.86);
  border-bottom: 1px solid rgba(193, 198, 215, 0.45);
  box-shadow: 0 1px 8px rgba(26, 27, 31, 0.08);
  backdrop-filter: blur(14px);
}

.st-brand,
.st-links {
  display: flex;
  align-items: center;
}

.st-brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 820;
}

.st-brand-mark {
  width: 24px;
  height: 24px;
  color: var(--st-primary);
}

.st-brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.st-links {
  gap: clamp(18px, 3vw, 42px);
  color: var(--st-muted);
  font-size: 14px;
}

.st-links > a:not(.st-download):first-child {
  color: var(--st-primary);
  font-weight: 760;
}

.st-links a:hover {
  color: var(--st-primary);
}

.st-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(193, 198, 215, 0.55);
  border-radius: 999px;
  background: #f4f3f8;
}

.st-lang-switch button {
  min-width: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--st-muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.st-lang-switch button.active {
  color: var(--st-primary);
  font-weight: 820;
}

.st-lang-switch span {
  width: 1px;
  height: 14px;
  background: rgba(193, 198, 215, 0.8);
}

.st-download,
.st-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--st-primary);
  color: #ffffff !important;
  font-weight: 820;
  box-shadow: 0 12px 24px rgba(0, 88, 188, 0.18);
}

.st-download {
  min-width: 126px;
  min-height: 36px;
  border-radius: 999px;
}

.st-main {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 128px clamp(20px, 3vw, 32px) 80px;
}

.st-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
  margin-bottom: 94px;
}

.st-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.st-version {
  margin: 0;
  padding: 5px 24px;
  border-radius: 999px;
  background: var(--st-primary);
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(0, 88, 188, 0.16);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.st-hero h1 {
  max-width: 560px;
  font-size: clamp(42px, 5.5vw, 58px);
  line-height: 1.08;
  font-weight: 860;
}

.st-hero p {
  margin: 0;
  max-width: 560px;
  color: var(--st-muted);
  font-size: 17px;
  line-height: 1.55;
}

.st-hero-actions {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(150px, 0.72fr);
  gap: 24px;
  width: min(100%, 480px);
}

.st-primary,
.st-secondary {
  min-height: 50px;
  border-radius: 10px;
  padding: 0 22px;
}

.st-primary {
  gap: 10px;
}

.st-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--st-line);
  background: var(--st-surface);
  color: var(--st-muted);
  font-weight: 700;
}

.st-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px !important;
  color: rgba(65, 71, 85, 0.58) !important;
  font-size: 12px !important;
}

.st-hero-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: #eaf5ff;
  box-shadow: 0 30px 80px rgba(0, 88, 188, 0.18);
}

.st-hero-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 112, 235, 0.18), transparent 62%);
  filter: blur(22px);
}

.st-hero-visual img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.st-shortcut-float {
  position: absolute;
  left: -34px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(26, 27, 31, 0.16);
  backdrop-filter: blur(18px);
}

.st-shortcut-float span {
  color: var(--st-faint);
  font-size: 12px;
}

.st-section {
  margin-bottom: 80px;
}

.st-section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.st-section-heading h2,
.st-shortcut-copy h2,
.st-professionals h2,
.st-built h2 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.16;
  font-weight: 790;
}

.st-section-heading p {
  margin: 8px 0 0;
  color: var(--st-muted);
}

.st-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.st-feature-card {
  padding: 24px;
  border: 1px solid rgba(193, 198, 215, 0.42);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.st-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 88, 188, 0.1);
}

.st-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(193, 198, 215, 0.42);
  border-radius: 12px;
  margin-bottom: 20px;
}

.st-feature-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.st-feature-card p {
  margin: 0;
  color: var(--st-muted);
  line-height: 1.55;
}

.st-shortcut-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 80px);
  align-items: center;
  margin-bottom: 82px;
  padding: clamp(42px, 7vw, 82px) clamp(32px, 7vw, 112px);
  border-radius: 32px;
  background: var(--st-container);
}

.st-shortcut-copy {
  max-width: 430px;
}

.st-shortcut-copy h2 {
  margin-bottom: 34px;
}

.st-shortcut-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(193, 198, 215, 0.9);
  color: var(--st-muted);
}

.st-shortcut-row > span:last-child,
.st-shortcut-float {
  white-space: nowrap;
}

.st-page kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 26px;
  margin-left: 4px;
  padding: 2px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 2px 0 #e5e7eb;
  color: var(--st-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.st-pro-tip {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(0, 88, 188, 0.06);
}

.st-pro-tip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--st-primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.st-pro-tip p {
  margin: 0;
  line-height: 1.55;
}

.st-shortcut-visual {
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 2px dashed var(--st-primary);
  border-radius: 12px;
  background: rgba(0, 88, 188, 0.05);
}

.st-window-card {
  width: min(68%, 250px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(193, 198, 215, 0.5);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 28px 48px rgba(26, 27, 31, 0.16);
}

.st-window-card span,
.st-window-card i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: var(--st-container);
}

.st-window-card span {
  width: 54px;
}

.st-window-card i:nth-of-type(1),
.st-window-card i:nth-of-type(3) {
  width: 100%;
  background: #e6eef8;
}

.st-window-card i:nth-of-type(2) {
  width: 78%;
}

.st-window-card b {
  align-self: center;
  margin-top: auto;
  padding: 16px 24px;
  border-radius: 8px;
  background: #c8ddf2;
  color: #7fa6cc;
  font-size: 52px;
  line-height: 1;
}

.st-professionals {
  margin-bottom: 82px;
  text-align: center;
}

.st-professionals h2 {
  margin-bottom: 70px;
}

.st-professional-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.st-professional-grid article {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.st-professional-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #ffffff;
  color: var(--st-primary);
  font-size: 28px;
  font-weight: 820;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(26, 27, 31, 0.12);
}

.st-professional-grid p {
  margin: 0;
}

.st-built {
  margin-bottom: 112px;
  padding: clamp(42px, 5vw, 64px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.14), transparent 20rem),
    var(--st-primary);
  color: #ffffff;
}

.st-built > div {
  max-width: 800px;
}

.st-built p {
  margin: 26px 0 42px;
  font-size: 17px;
  line-height: 1.56;
}

.st-made {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1.35;
}

.st-made span:first-child {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-family: inherit;
  font-size: 17px;
}

.st-made strong {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-size: inherit;
  line-height: inherit;
}

.st-made strong span {
  white-space: nowrap;
}

.st-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px clamp(20px, 3vw, 32px);
  background: #ffffff;
  color: var(--st-faint);
  font-size: 12px;
}

.st-footer > div,
.st-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.st-footer a:first-child {
  color: var(--st-primary);
  font-size: 20px;
  font-weight: 820;
}

.st-footer nav a:first-child {
  color: var(--st-faint);
  font-size: 12px;
  font-weight: 400;
}

.st-footer a:hover {
  color: var(--st-primary);
}

.pp-page {
  --pp-bg: #faf9fe;
  --pp-surface: #ffffff;
  --pp-container: #eeedf3;
  --pp-container-low: #f4f3f8;
  --pp-container-high: #e9e7ed;
  --pp-text: #1a1b1f;
  --pp-muted: #414755;
  --pp-faint: #717786;
  --pp-line: #c1c6d7;
  --pp-primary: #0058bc;
  --pp-primary-bright: #0070eb;
  --pp-warm: #ffdcc5;
  background: var(--pp-bg);
  color: var(--pp-text);
}

.pp-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 3vw, 32px);
  background: rgba(250, 249, 254, 0.88);
  border-bottom: 1px solid rgba(193, 198, 215, 0.5);
  box-shadow: 0 1px 8px rgba(26, 27, 31, 0.06);
  backdrop-filter: blur(14px);
}

.pp-brand {
  color: var(--pp-text);
  font-size: 18px;
  font-weight: 820;
}

.pp-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--pp-muted);
  font-size: 14px;
}

.pp-links a:hover {
  color: var(--pp-primary);
}

.pp-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(193, 198, 215, 0.55);
  border-radius: 999px;
  background: var(--pp-container-low);
}

.pp-lang-switch button {
  min-width: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--pp-muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.pp-lang-switch button.active {
  color: var(--pp-primary);
  font-weight: 820;
}

.pp-lang-switch span {
  width: 1px;
  height: 14px;
  background: rgba(193, 198, 215, 0.8);
}

.pp-download {
  min-width: 108px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pp-primary-bright);
  color: #ffffff !important;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.pp-progress {
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 71;
  width: 100%;
  height: 2px;
  background: var(--pp-container-low);
}

.pp-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--pp-primary);
  transition: width 80ms linear;
}

.pp-main {
  width: min(100%, 856px);
  margin: 0 auto;
  padding: 128px clamp(20px, 3vw, 32px) 92px;
}

.pp-hero {
  margin-bottom: 80px;
}

.pp-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--pp-warm);
  color: #301400;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pp-hero h1 {
  font-size: clamp(42px, 6vw, 58px);
  line-height: 1.08;
  font-weight: 850;
}

.pp-hero > p:not(.pp-date) {
  margin: 10px 0 0;
  color: var(--pp-muted);
  font-size: 17px;
  line-height: 1.55;
}

.pp-content {
  display: grid;
  gap: 76px;
}

.pp-section h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.18;
  font-weight: 790;
}

.pp-section p {
  margin: 0;
  color: var(--pp-muted);
  font-size: 15px;
  line-height: 1.65;
}

.pp-section strong {
  color: var(--pp-text);
}

.pp-glass {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(26, 27, 31, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.pp-stack {
  display: grid;
  gap: 20px;
}

.pp-info-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(193, 198, 215, 0.42);
  border-radius: 10px;
  background: var(--pp-container-low);
}

.pp-card-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 88, 188, 0.1);
  color: var(--pp-primary);
  font-weight: 850;
}

.pp-info-card h3,
.pp-permission h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.pp-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.pp-mini-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(193, 198, 215, 0.62);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

.pp-mini-grid i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pp-primary);
}

.pp-permission {
  padding: 26px 28px;
  border-left: 4px solid var(--pp-primary);
  border-radius: 10px;
  background: var(--pp-container);
}

.pp-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px 44px;
  border: 1px solid rgba(26, 27, 31, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.pp-contact strong {
  display: block;
  margin-top: 8px;
  color: var(--pp-primary);
}

.pp-contact a {
  min-width: 260px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pp-primary);
  color: #ffffff;
  font-weight: 820;
}

.pp-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 48px clamp(20px, 3vw, 32px);
  background: #ffffff;
  color: var(--pp-faint);
  font-size: 12px;
}

.pp-footer > div,
.pp-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.pp-footer div > a {
  color: var(--pp-primary);
  font-size: 20px;
  font-weight: 820;
}

.pp-footer a:hover {
  color: var(--pp-primary);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 20px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(22, 22, 22, 0.06);
  backdrop-filter: blur(18px);
}

.product-header {
  background: rgba(255, 255, 255, 0.84);
}

.solid-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.94);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: url("/favicon.svg") center / contain no-repeat;
  box-shadow: 0 10px 26px rgba(184, 137, 59, 0.18);
}

.nav-links {
  gap: clamp(12px, 2.5vw, 30px);
  font-size: 14px;
  color: rgba(22, 22, 22, 0.72);
}

.nav-links a {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(22, 22, 22, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.portfolio-hero {
  min-height: 82svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding: clamp(116px, 16vw, 180px) clamp(20px, 5vw, 72px) clamp(64px, 8vw, 110px);
  background:
    radial-gradient(circle at 82% 24%, rgba(184, 137, 59, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

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

.portfolio-symbol {
  width: min(100%, 380px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 247, 0.78)),
    var(--white);
  box-shadow: var(--shadow);
}

.portfolio-symbol img {
  width: 58%;
  height: 58%;
}

.product-hero {
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(108px, 13vw, 154px) clamp(20px, 5vw, 72px) clamp(52px, 7vw, 92px);
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 122, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 4% 22%, rgba(0, 178, 255, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

.product-copy {
  max-width: 650px;
}

.product-icon {
  width: clamp(82px, 10vw, 132px);
  height: clamp(82px, 10vw, 132px);
  display: block;
  margin-bottom: 28px;
  border-radius: 28%;
  box-shadow: 0 22px 52px rgba(0, 122, 255, 0.26);
}

.hero-screenshot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: 8px;
  background: #eef7ff;
  box-shadow: 0 28px 80px rgba(0, 72, 150, 0.18);
}

.hero-screenshot img {
  width: 100%;
  display: block;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 39%, rgba(255, 255, 255, 0.12) 74%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 88px);
  padding-top: 72px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(60px, 11vw, 132px);
  line-height: 0.9;
  font-weight: 760;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(22, 22, 22, 0.68);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

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

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

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid rgba(22, 22, 22, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 110px;
}

.apps-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.app-list {
  display: grid;
  gap: 20px;
}

.app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(22, 22, 22, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.app-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
}

.app-card-visual {
  min-height: 100%;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 20%, rgba(0, 122, 255, 0.12), transparent 14rem),
    #f4faff;
}

.app-card-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 76% center;
}

.app-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 28%;
  box-shadow: 0 12px 30px rgba(0, 122, 255, 0.22);
}

.app-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.app-card-body .eyebrow {
  margin: 0;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
}

.text-link {
  color: #2f615f;
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.intro-section,
.shortcut-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.capability-list span {
  padding: 10px 13px;
  border: 1px solid rgba(0, 87, 184, 0.13);
  border-radius: 999px;
  background: #f8fcff;
  color: #244461;
  font-size: 14px;
  font-weight: 760;
}

.intro-copy p,
.showcase-item p,
.shortcut-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.screenshot-showcase {
  display: grid;
  gap: 22px;
  background: #f4faff;
  border-block: 1px solid rgba(0, 87, 184, 0.08);
}

.showcase-item {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(0, 87, 184, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(0, 72, 150, 0.1);
}

.showcase-item:nth-child(even) img {
  order: 2;
}

.showcase-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 72, 150, 0.12);
}

.showcase-item h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
}

.shortcut-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 122, 255, 0.14), transparent 24rem),
    var(--white);
  border-top: 1px solid var(--line);
}

.shortcut-list {
  display: grid;
  gap: 12px;
}

.shortcut-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(0, 87, 184, 0.12);
  border-radius: 8px;
  background: #f8fcff;
}

.shortcut-list span {
  color: #0057b8;
  font-weight: 850;
}

.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-item {
  min-height: 220px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
}

.feature-index {
  display: block;
  margin-bottom: 34px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.feature-item p,
.privacy-strip p,
.policy-content p {
  color: var(--muted);
  line-height: 1.72;
}

.privacy-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--ink);
}

.policy-page {
  background:
    radial-gradient(circle at 88% 8%, rgba(197, 164, 106, 0.16), transparent 28rem),
    var(--paper);
}

.policy-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0 clamp(72px, 10vw, 128px);
}

.policy-hero {
  margin-bottom: clamp(36px, 6vw, 70px);
}

.policy-hero h1 {
  color: var(--ink);
  font-size: clamp(48px, 8vw, 92px);
}

.policy-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.policy-content {
  display: grid;
  gap: 34px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.policy-content section {
  display: grid;
  gap: 12px;
}

.policy-content h2 {
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.15;
}

.policy-content p {
  margin: 0;
  font-size: 16px;
}

.policy-content a {
  color: #2f615f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .pp-nav {
    padding-inline: 20px;
  }

  .pp-links a:not(.pp-download),
  .pp-lang-switch {
    display: none;
  }

  .pp-main {
    padding-top: 104px;
  }

  .pp-contact {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .pp-contact a {
    width: 100%;
  }

  .pp-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .st-nav {
    padding-inline: 20px;
  }

  .st-links a:not(.st-download),
  .st-lang-switch {
    display: none;
  }

  .st-main {
    padding-top: 104px;
  }

  .st-hero,
  .st-shortcut-panel {
    grid-template-columns: 1fr;
  }

  .st-hero {
    margin-bottom: 70px;
  }

  .st-feature-grid,
  .st-professional-grid {
    grid-template-columns: 1fr 1fr;
  }

  .st-shortcut-float {
    left: 18px;
    bottom: -28px;
  }

  .st-shortcut-panel {
    padding: 36px 24px;
  }

  .st-shortcut-copy {
    max-width: none;
  }

  .st-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-nav {
    padding-inline: 20px;
  }

  .home-nav-links a:not(.home-download) {
    display: none;
  }

  .home-main {
    padding-top: 104px;
  }

  .home-hero {
    min-height: auto;
    margin-bottom: 64px;
  }

  .home-primary-action {
    min-width: 220px;
    min-height: 58px;
    margin-top: 36px;
  }

  .home-section-heading {
    margin-bottom: 28px;
  }

  .home-grid-view {
    display: none;
  }

  .home-app-grid,
  .home-story {
    grid-template-columns: 1fr;
  }

  .home-app-card {
    min-height: auto;
  }

  .home-footer {
    flex-direction: column;
  }

  .home-footer nav {
    justify-content: flex-start;
  }

  .site-header {
    padding: 16px 20px;
  }

  .nav-links {
    gap: 14px;
  }

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

  .hero {
    min-height: 88svh;
    align-items: end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.1));
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 110px 0 58px;
  }

  .feature-band,
  .apps-section,
  .privacy-strip {
    grid-template-columns: 1fr;
  }

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

  .product-hero,
  .intro-section,
  .shortcut-section,
  .showcase-item {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .showcase-item:nth-child(even) img {
    order: 0;
  }

  .shortcut-list article {
    grid-template-columns: 1fr;
  }

  .portfolio-symbol {
    width: min(72vw, 300px);
    border-radius: 30px;
  }

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

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

  .section-heading {
    position: static;
  }

  .privacy-strip .button {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .pp-brand {
    font-size: 17px;
  }

  .pp-download {
    min-width: 104px;
  }

  .pp-main {
    padding-inline: 18px;
  }

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

  .pp-info-card,
  .pp-mini-grid {
    grid-template-columns: 1fr;
  }

  .pp-glass,
  .pp-info-card,
  .pp-permission {
    padding: 22px;
  }

  .st-brand {
    font-size: 17px;
  }

  .st-download {
    min-width: 104px;
  }

  .st-main {
    padding-inline: 18px;
  }

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

  .st-hero-actions,
  .st-feature-grid,
  .st-professional-grid {
    grid-template-columns: 1fr;
  }

  .st-shortcut-float {
    display: none;
  }

  .st-shortcut-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .st-shortcut-visual {
    min-height: 280px;
  }

  .st-window-card {
    min-height: 220px;
  }

  .st-built {
    margin-bottom: 72px;
  }

  .home-brand {
    font-size: 17px;
  }

  .home-download {
    min-width: 104px;
  }

  .home-main {
    padding-inline: 18px;
  }

  .home-pill {
    padding-inline: 14px;
  }

  .home-hero h1 {
    font-size: 38px;
  }

  .home-hero p {
    font-size: 15px;
  }

  .home-primary-action,
  .home-card-primary,
  .home-card-secondary,
  .home-update-form button {
    width: 100%;
  }

  .home-card-actions,
  .home-update-form,
  .home-value-grid {
    grid-template-columns: 1fr;
  }

  .home-story {
    padding: 28px;
    border-radius: 24px;
  }

  .brand {
    font-size: 15px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

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

  .button {
    padding-inline: 18px;
  }

  .feature-item {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ============================================================
   Shipper Rush 3D — game landing (extends .st-page)
   ============================================================ */
.sr-page {
  --st-primary: #15803d;
  --st-primary-bright: #22c55e;
  --st-bg: #f3fbf4;
  --st-container-soft: #e6f7ea;
  --sr-ink: #0c1f16;
  --sr-frame: linear-gradient(160deg, #21402e 0%, #0c1f16 62%);
  background:
    radial-gradient(1100px 540px at 88% -120px, rgba(34, 197, 94, 0.15), transparent 70%),
    radial-gradient(900px 480px at -140px 34%, rgba(250, 204, 21, 0.1), transparent 70%),
    var(--st-bg);
}

.sr-page .st-nav {
  background: rgba(243, 251, 244, 0.86);
  border-bottom: 1px solid rgba(21, 128, 61, 0.14);
}

.sr-page .st-version {
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.3);
}

.sr-page .st-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.sr-page .st-hero h1 {
  color: var(--sr-ink);
  letter-spacing: -0.02em;
}

.sr-page .st-feature-card {
  border-color: rgba(21, 128, 61, 0.14);
  background: rgba(255, 255, 255, 0.85);
}

.sr-page .st-feature-card:hover {
  box-shadow: 0 22px 46px rgba(21, 128, 61, 0.14);
}

/* hero phone frame */
.sr-page .st-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.sr-page .st-hero-visual::before {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent 62%);
}

.sr-hero-shot {
  position: relative;
  width: min(320px, 82%);
  padding: 10px;
  border-radius: 46px;
  background: var(--sr-frame);
  box-shadow:
    0 60px 120px -24px rgba(12, 31, 22, 0.45),
    0 24px 48px -20px rgba(12, 31, 22, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: rotate(2.4deg);
  transition: transform 380ms ease;
}

.sr-hero-shot:hover {
  transform: rotate(0deg) scale(1.015);
}

.sr-hero-shot::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 84px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0c1f16;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.sr-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 379 / 820;
  object-fit: cover;
  border-radius: 36px;
}

/* floating chip on hero */
.sr-float {
  position: absolute;
  right: 2%;
  bottom: 9%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 16px;
  border: 1px solid rgba(21, 128, 61, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(12, 31, 22, 0.2);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 750;
  color: var(--sr-ink);
}

.sr-float > span:first-child {
  font-size: 18px;
}

/* feature card icon chip */
.sr-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 28px;
  border: 1px solid rgba(21, 128, 61, 0.2);
  background: linear-gradient(145deg, #ffffff 0%, #d9f3e1 100%);
  box-shadow:
    0 12px 24px rgba(21, 128, 61, 0.12),
    inset 0 1px 0 #ffffff;
}

/* store badges */
.sr-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.sr-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, #1f2937 0%, #0b0f14 100%);
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sr-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(12, 31, 22, 0.3);
}

.sr-badge svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.sr-badge span small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}

.sr-badge span b {
  display: block;
  font-size: 17px;
  font-weight: 650;
}

/* stats band */
.sr-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 28px;
  background:
    radial-gradient(720px 300px at 85% -60px, rgba(74, 222, 128, 0.2), transparent 70%),
    linear-gradient(135deg, #10231a 0%, #14532d 100%);
  box-shadow: 0 34px 70px -20px rgba(12, 31, 22, 0.45);
  text-align: center;
}

.sr-stats article {
  padding: 10px;
}

.sr-stats article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.sr-stats article b {
  display: block;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 820;
  letter-spacing: -0.01em;
  color: #4ade80;
}

.sr-stats article span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

/* screenshots gallery */
.sr-shots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}

.sr-shot {
  margin: 0;
  padding: 8px;
  border-radius: 28px;
  background: var(--sr-frame);
  box-shadow: 0 20px 44px -14px rgba(12, 31, 22, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sr-shot:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 62px -16px rgba(12, 31, 22, 0.45);
}

.sr-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 379 / 820;
  object-fit: cover;
  border-radius: 21px;
}

@media (max-width: 1080px) {
  .sr-shots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sr-page .st-hero {
    grid-template-columns: 1fr;
  }

  .sr-float {
    right: 6%;
    bottom: 4%;
    padding: 11px 16px;
  }

  .sr-shots {
    grid-auto-flow: column;
    grid-auto-columns: min(58vw, 240px);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: -20px;
    padding: 4px 20px 16px;
    scrollbar-width: none;
  }

  .sr-shots::-webkit-scrollbar {
    display: none;
  }

  .sr-shot {
    scroll-snap-align: center;
  }
}

@media (max-width: 720px) {
  .sr-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sr-stats article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
  }
}

/* ============================================================
   Global & home polish
   ============================================================ */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-page {
  background:
    radial-gradient(1000px 500px at 92% -140px, rgba(0, 88, 188, 0.07), transparent 70%),
    radial-gradient(820px 440px at -100px 32%, rgba(198, 79, 0, 0.05), transparent 70%),
    var(--home-bg);
}

.home-hero-glow {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 88, 188, 0.13), rgba(198, 79, 0, 0.05) 55%, transparent 78%);
  filter: blur(44px);
}

.home-app-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.home-app-card.is-active:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 88, 188, 0.4);
  box-shadow:
    inset 0 0 0 1px rgba(0, 88, 188, 0.08),
    0 24px 48px rgba(0, 88, 188, 0.12);
}

.home-primary-action,
.home-download,
.st-download,
.st-primary {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.home-primary-action:hover,
.home-download:hover,
.st-download:hover,
.st-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
