@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --ink: #202a44;
  --ink-strong: #101a31;
  --ink-soft: #3e4a66;
  --muted: #667085;
  --quiet: #8b95a8;
  --paper: #ffffff;
  --surface: #f7fafe;
  --surface-strong: #edf3fb;
  --line: #dce6f2;
  --line-soft: #ecf1f7;
  --accent: #4f72ff;
  --accent-soft: #edf3ff;
  --success: #22a970;
  --warning: #f0a82f;
  --shadow: 0 22px 60px rgba(32, 42, 68, 0.12);
  --shadow-soft: 0 10px 30px rgba(32, 42, 68, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Satoshi", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 43%, #eef4fb 100%);
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}

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

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

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 11vw, 7.2rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

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

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 16px auto 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.brand-link img,
.footer-brand img {
  object-fit: contain;
}

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

.nav-links a,
.footer-links a,
.footer-link-button {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-link-button:hover {
  color: var(--ink);
}

.nav-links a:hover {
  background: var(--surface);
}

.hero-section,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 52px;
  align-items: center;
  padding: 68px 0 54px;
}

.hero-copy,
.app-preview,
.section-heading,
.privacy-copy,
.privacy-grid,
.site-footer > * {
  min-width: 0;
}

.hero-logo {
  width: clamp(120px, 14vw, 186px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 18px 26px rgba(32, 42, 68, 0.16));
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: clamp(1.24rem, 2vw, 1.56rem);
  line-height: 1.36;
}

.hero-support {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
}

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-row.centered {
  justify-content: center;
}

.store-button {
  min-height: 58px;
  min-width: 196px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.store-button.disabled {
  cursor: default;
  opacity: 0.86;
}

.store-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.store-logo {
  width: 21px;
  height: 21px;
  display: block;
}

.store-logo-play {
  width: 22px;
  height: 22px;
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  color: var(--quiet);
  font-size: 0.76rem;
}

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

.app-preview {
  display: grid;
  place-items: center;
}

.screenshot-phone {
  position: relative;
  width: 430px;
  max-width: 100%;
  margin: 0;
  padding: 12px;
  background: linear-gradient(145deg, #17213d 0%, #0b1224 100%);
  border-radius: 52px;
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.screenshot-phone img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  background: #f7fafe;
  border-radius: 40px;
  box-shadow: 0 0 0 1px rgba(220, 230, 242, 0.5);
}

.subpage-main {
  padding-bottom: 56px;
}

.breadcrumb {
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 700;
}

.seo-hero,
.seo-section,
.page-cta {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 70px 0 64px;
}

.seo-hero > * {
  min-width: 0;
}

.seo-hero h1 {
  max-width: 820px;
  font-size: clamp(3.3rem, 7vw, 5.6rem);
  line-height: 0.94;
  overflow-wrap: break-word;
}

.seo-lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.38;
  overflow-wrap: break-word;
}

.seo-support {
  max-width: 680px;
}

.seo-proof {
  display: grid;
  gap: 14px;
}

.seo-hero .screenshot-phone {
  width: 340px;
  justify-self: center;
}

.seo-proof-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.seo-proof-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
  font-size: 1.28rem;
  line-height: 1.12;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-link,
.button-secondary {
  min-height: 46px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
}

.button-link {
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

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

.seo-section {
  padding: 54px 0;
}

.seo-section.narrow {
  max-width: 900px;
}

.seo-section h2 {
  max-width: 820px;
}

.detail-grid,
.two-column-grid,
.use-case-grid {
  display: grid;
  gap: 16px;
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.use-case-grid {
  grid-template-columns: repeat(4, 1fr);
}

.detail-card,
.content-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.detail-card p,
.content-panel p {
  margin-bottom: 0;
}

.content-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.content-panel li + li {
  margin-top: 8px;
}

.page-cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 24px;
  padding: 54px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-cta p {
  max-width: 620px;
  margin-bottom: 0;
}

.section {
  padding: 84px 0;
}

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

.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
}

.problem-section,
.feature-section,
.link-hub-section,
.faq-preview-section,
.privacy-section,
.final-cta {
  padding-left: 32px;
  padding-right: 32px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.problem-grid,
.steps,
.feature-grid,
.link-card-grid,
.pricing-cards,
.faq-list,
.privacy-grid {
  display: grid;
  gap: 16px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps,
.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.link-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.problem-grid article,
.steps article,
.feature-grid article,
.link-card,
.plan-card,
.faq-list article,
.privacy-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.link-card {
  display: block;
  min-height: 220px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  border-color: rgba(79, 114, 255, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.link-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.link-card h3 {
  font-size: 1.32rem;
  line-height: 1.15;
}

.link-card p {
  margin-bottom: 0;
}

.card-number,
.steps span,
.plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 29px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.icon {
  --icon-url: none;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-bottom: 16px;
  color: var(--ink);
  background: currentColor;
  -webkit-mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--icon-url);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.icon-users {
  --icon-url: url("../icons/users.svg");
}

.icon-smartphone {
  --icon-url: url("../icons/smartphone.svg");
}

.icon-calendar {
  --icon-url: url("../icons/calendar.svg");
}

.icon-sparkles {
  --icon-url: url("../icons/sparkles.svg");
}

.pricing-cards {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  margin-bottom: 20px;
}

.plan-card h3 {
  margin-bottom: 8px;
  font-size: 2.6rem;
  line-height: 1;
}

.plan-card h3 span {
  color: var(--muted);
  font-size: 1rem;
}

.plan-card.premium {
  color: #fff;
  background: linear-gradient(145deg, var(--ink) 0%, #111a31 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-card.premium p,
.plan-card.premium li,
.plan-card.premium h3 span {
  color: rgba(255, 255, 255, 0.76);
}

.plan-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.plan-card li + li {
  margin-top: 10px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.annual-price {
  margin-bottom: 14px;
  color: #b7caef;
  font-weight: 700;
}

.comparison-wrap {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
}

.comparison-header {
  color: #fff;
  background: var(--ink);
  font-weight: 700;
}

.comparison-row {
  border-top: 1px solid var(--line-soft);
}

.comparison-row span {
  color: var(--ink-soft);
  font-weight: 700;
}

.comparison-row b {
  color: var(--muted);
}

.comparison-row b:last-child {
  color: var(--accent);
}

.section-link-note {
  margin: 20px 0 0;
  text-align: center;
}

.inline-link {
  color: var(--accent);
  font-weight: 700;
}

.inline-link:hover {
  color: var(--accent-strong);
}

.faq-list {
  max-width: 900px;
  grid-template-columns: 1fr;
  margin: 0 auto;
}

.faq-list article {
  box-shadow: none;
}

.faq-list h3 {
  margin-bottom: 6px;
  font-size: 1.16rem;
}

.faq-list p {
  margin-bottom: 0;
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.privacy-copy p {
  font-size: 1.04rem;
}

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

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 64px;
}

.final-cta img {
  margin-bottom: 18px;
}

.final-cta p:not(.eyebrow) {
  max-width: 520px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 500px;
  margin: 12px 0 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px 18px;
  justify-self: end;
  width: min(100%, 760px);
}

.footer-links a {
  overflow-wrap: anywhere;
}

.footer-link-button {
  margin: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.analytics-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(440px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.analytics-consent-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1rem;
}

.analytics-consent-copy p {
  margin: 0;
  font-size: 0.92rem;
}

.analytics-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.analytics-button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.analytics-button.primary {
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.analytics-button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero-section,
  .seo-hero,
  .privacy-section,
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-section {
    min-height: auto;
    padding-top: 48px;
  }

  .problem-grid,
  .steps,
  .feature-grid,
  .link-card-grid,
  .detail-grid,
  .two-column-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .footer-links {
    justify-content: flex-start;
  }

  .footer-links {
    justify-self: start;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .site-header,
  .hero-section,
  .breadcrumb,
  .seo-hero,
  .seo-section,
  .page-cta,
  .section,
  .site-footer {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
  }

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

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 336px;
    align-self: flex-start;
    gap: 4px;
  }

  .nav-links a {
    padding: 8px 4px;
    font-size: 0.78rem;
    line-height: 1.1;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 4.8rem);
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-section {
    gap: 34px;
    padding-bottom: 36px;
  }

  .seo-hero {
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .subpage-main .breadcrumb,
  .subpage-main .seo-hero,
  .subpage-main .seo-section,
  .subpage-main .page-cta {
    max-width: 358px;
    margin-left: 16px;
    margin-right: 0;
  }

  .seo-hero > div:first-child {
    max-width: 358px;
  }

  .seo-hero h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

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

  .hero-copy,
  .hero-lead,
  .hero-support,
  .seo-lead,
  .seo-support {
    max-width: 100%;
  }

  .hero-lead,
  .hero-support {
    max-width: 360px;
  }

  .hero-logo {
    width: 126px;
  }

  .app-preview {
    width: 100%;
  }

  .screenshot-phone {
    width: 100%;
    max-width: 342px;
    padding: 10px;
    border-radius: 46px;
  }

  .seo-hero .screenshot-phone {
    max-width: 320px;
  }

  .screenshot-phone img {
    border-radius: 36px;
  }

  .store-row,
  .store-button {
    width: 100%;
  }

  .problem-section,
  .feature-section,
  .link-hub-section,
  .faq-preview-section,
  .privacy-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .problem-grid,
  .steps,
  .feature-grid,
  .link-card-grid,
  .detail-grid,
  .two-column-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .seo-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .comparison-wrap {
    overflow-x: auto;
  }

  .comparison-header,
  .comparison-row {
    min-width: 620px;
  }

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

  .analytics-consent {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }

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