:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-strong: #eef4fb;
  --ink: #102033;
  --muted: #607086;
  --line: #dbe4ef;
  --blue: #2f7de1;
  --green: #20a567;
  --amber: #f0a333;
  --violet: #7168e8;
  --rose: #e65f73;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(115deg, rgba(47, 125, 225, 0.10), transparent 34%),
    linear-gradient(245deg, rgba(32, 165, 103, 0.10), transparent 38%),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(246, 248, 251, 0.80);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(219, 228, 239, 0.9);
}

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

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.16);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-cta,
.language-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.is-active,
.language-link:hover {
  background: rgba(47, 125, 225, 0.10);
  color: var(--blue);
}

.nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  display: flex;
  align-items: center;
  padding: 30px 0 54px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.78), transparent 58%),
    linear-gradient(30deg, rgba(240, 163, 51, 0.14), transparent 44%);
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(38px, 8vw, 92px);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #33465f;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 18px 38px rgba(47, 125, 225, 0.28);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(32, 165, 103, 0.13);
  color: var(--green);
  font-size: 0.78rem;
}

.hero-visual {
  justify-self: center;
  width: min(100%, 500px);
}

.screenshot-showcase {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.phone-shot {
  display: block;
  width: clamp(210px, 20vw, 250px);
  height: auto;
  border: 1px solid rgba(16, 32, 51, 0.10);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.shot-main {
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
}

.shot-secondary {
  position: absolute;
  right: 8px;
  top: 62px;
  z-index: 1;
  width: clamp(180px, 17vw, 220px);
  opacity: 0.94;
  transform: rotate(5deg);
}

.salary-card,
.data-visual,
.feature-card,
.screenshot-card {
  border: 1px solid rgba(219, 228, 239, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
}

.panel-label,
.metric-grid span,
.salary-card span,
.data-row span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.active-work strong {
  display: block;
  margin-top: 6px;
  font-size: 2.1rem;
  line-height: 1;
}

.progress-ring {
  width: 96px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 76%, #dbe9f2 76% 100%);
}

.progress-ring span {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
}

.check-button {
  width: 100%;
  min-height: 54px;
  margin: 18px 0;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 850;
  box-shadow: 0 18px 30px rgba(32, 165, 103, 0.24);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-grid div {
  padding: 16px;
}

.metric-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

.period-status strong {
  display: block;
  margin: 4px 0 12px;
  color: var(--green);
  font-size: 1.45rem;
}

.mini-progress {
  height: 9px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: #dbe9f2;
}

.mini-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.period-status small {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section[id] {
  scroll-margin-top: 88px;
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.two-column,
.split-layout,
.pay-layout,
.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section h2,
.download-band h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section p,
.download-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  padding: 20px;
}

.feature-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(47, 125, 225, 0.11);
  color: var(--blue);
  font-weight: 850;
}

.feature-card:nth-child(2) .feature-icon {
  background: rgba(32, 165, 103, 0.11);
  color: var(--green);
}

.feature-card:nth-child(3) .feature-icon {
  background: rgba(113, 104, 232, 0.12);
  color: var(--violet);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.intro-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(238, 244, 251, 0.80));
}

.norm-band {
  background: #ffffff;
}

.screenshots-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 251, 0.96)),
    #ffffff;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.55fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: end;
  margin-bottom: 28px;
}

.section-heading-row p:last-child {
  margin-bottom: 18px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screenshot-card {
  margin: 0;
  padding: 16px 12px 12px;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.screenshot-card img {
  width: min(100%, 210px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 22px;
  background: #eef4fb;
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.12);
}

.screenshot-card figcaption {
  width: 100%;
  padding: 12px 4px 2px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.data-visual {
  padding: 12px;
  background: #f9fbfe;
}

.data-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
}

.data-row:last-child {
  border-bottom: 0;
}

.data-row strong {
  font-size: 1.1rem;
}

.data-row.highlight {
  margin-top: 8px;
  border-radius: 8px;
  border-bottom: 0;
  background: rgba(32, 165, 103, 0.10);
  color: var(--green);
}

.pay-band {
  background:
    linear-gradient(90deg, rgba(240, 163, 51, 0.12), transparent 42%),
    #f9fbfe;
}

.salary-card {
  min-height: 280px;
  padding: 28px;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto auto 1fr;
  background: #102033;
  color: white;
  box-shadow: 0 24px 56px rgba(16, 32, 51, 0.20);
}

.salary-card span {
  color: rgba(255, 255, 255, 0.72);
}

.salary-card strong {
  margin-top: 8px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.salary-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 116px;
  margin-top: 28px;
}

.salary-bars span {
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--amber), var(--green));
}

.privacy-band {
  background: #ffffff;
}

.download-band {
  padding: 70px 0;
  background: linear-gradient(135deg, #102033, #1d3552);
  color: white;
}

.download-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.download-inner img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
}

.download-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.policy-hero {
  padding: 76px 0 44px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), transparent 62%),
    linear-gradient(30deg, rgba(47, 125, 225, 0.12), rgba(32, 165, 103, 0.08));
}

.policy-hero-inner,
.policy-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.policy-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}

.policy-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.policy-meta a,
.policy-card a {
  color: var(--blue);
  font-weight: 800;
}

.policy-shell {
  padding: 58px 0 20px;
  scroll-margin-top: 86px;
}

.policy-shell-en {
  border-top: 1px solid var(--line);
}

.policy-language-header {
  margin-bottom: 24px;
}

.policy-language-header h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
}

.policy-language-header p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-card {
  margin-bottom: 14px;
  padding: 24px;
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.06);
}

.policy-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.policy-card h4 {
  margin: 18px 0 8px;
  font-size: 1.02rem;
}

.policy-card p,
.policy-card li {
  color: #33465f;
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  padding-left: 1.25rem;
}

.store-button {
  min-width: 154px;
  min-height: 58px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  line-height: 1.08;
}

.store-button span {
  font-size: 0.72rem;
  font-weight: 700;
}

.store-button strong {
  font-size: 1.12rem;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0 auto 0 0;
}

.site-footer a {
  font-weight: 750;
}

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

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

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .nav-cta {
    justify-self: end;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-content,
  .two-column,
  .split-layout,
  .pay-layout,
  .privacy-grid,
  .download-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 430px);
  }

  .screenshot-showcase {
    min-height: 470px;
  }

  .phone-shot {
    width: min(56vw, 218px);
  }

  .shot-secondary {
    width: min(46vw, 190px);
    right: 18px;
    top: 48px;
  }

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

  .section-heading-row {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .section-heading-row p:last-child {
    margin-bottom: 0;
  }

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

  .screenshot-card img {
    width: min(100%, 190px);
  }

  .download-inner {
    text-align: left;
  }

  .store-button {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    min-height: 66px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .language-link {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .nav-links {
    top: 66px;
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 5.8rem);
  }

  .hero {
    padding: 28px 0 44px;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }

  .button {
    min-height: 46px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .trust-list {
    gap: 8px 12px;
    font-size: 0.92rem;
  }

  .screenshot-showcase {
    min-height: 250px;
    place-items: start center;
  }

  .phone-shot {
    width: 156px;
    height: 252px;
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
  }

  .shot-main {
    transform: rotate(-1.5deg);
  }

  .shot-secondary {
    right: 34px;
    top: 20px;
    width: 128px;
    height: 220px;
    border-radius: 13px;
  }

  .section {
    padding: 64px 0;
  }

  .section h2,
  .download-band h2 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .screenshot-grid {
    gap: 10px;
  }

  .screenshot-card {
    padding: 7px;
  }

  .screenshot-card img {
    width: min(100%, 138px);
    border-radius: 15px;
  }

  .screenshot-card figcaption {
    font-size: 0.84rem;
  }

  .site-footer {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
