:root {
  --ink: #13263a;
  --ink-strong: #0b1a2a;
  --muted: #4f6b82;
  --accent: #1d7bb7;
  --accent-strong: #0f5f95;
  --accent-soft: #dff0fa;
  --paper: #f4f3ee;
  --paper-soft: #fbfaf7;
  --panel: #ffffff;
  --line: rgba(19, 38, 58, 0.14);
  --line-strong: rgba(19, 38, 58, 0.28);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 22px 44px rgba(14, 35, 53, 0.1);
  --shadow-card: 0 26px 50px rgba(14, 35, 53, 0.14);
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 8%, rgba(29, 123, 183, 0.18), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(42, 167, 182, 0.16), transparent 30%),
    linear-gradient(180deg, #f8f7f2 0%, #f4f3ee 100%);
  line-height: 1.64;
  min-height: 100vh;
  position: relative;
}

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

.ambient {
  position: fixed;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
}

.ambient-left {
  left: -10vw;
  top: -10vw;
  background: rgba(29, 123, 183, 0.52);
}

.ambient-right {
  right: -12vw;
  top: 28vh;
  background: rgba(42, 167, 182, 0.44);
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 1.2rem 0 2.9rem;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 0.45rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(12, 32, 49, 0.08);
  position: sticky;
  top: 0.75rem;
  z-index: 20;
}

.brand {
  justify-self: start;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  justify-self: center;
}

.site-nav a {
  position: relative;
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.33rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 200ms ease;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.lang-switch:hover {
  transform: translateY(-1px);
  background: var(--accent-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(1.35rem, 3.3vw, 2.2rem);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 249, 255, 0.85) 100%);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 700;
}

.hero h1 {
  margin: 0.6rem 0 0.95rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.05rem, 4.9vw, 3.55rem);
  line-height: 1.09;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink-strong);
  max-width: 15ch;
}

.hero-text {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.74rem 1.06rem;
  font-size: 0.87rem;
  font-weight: 700;
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(20, 94, 145, 0.26);
}

.cta-alt {
  background: rgba(29, 123, 183, 0.12);
  border-color: var(--line);
  color: var(--ink);
}

.hero-kpis {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
}

.hero-kpis article {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  padding: 0.68rem;
}

.hero-kpis strong {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
}

.hero-kpis span {
  margin-top: 0.26rem;
  display: block;
  font-size: 0.73rem;
  color: var(--muted);
}

.hero-panel {
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(223, 240, 250, 0.74) 0%, rgba(255, 255, 255, 0.92) 100%),
    #fff;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.panel-top {
  display: grid;
  gap: 0.55rem;
}

.panel-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.panel-score {
  margin: 0.2rem 0 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(3rem, 6.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.panel-text {
  margin: 0.46rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.panel-mini-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.66rem;
  background: rgba(255, 255, 255, 0.82);
}

.panel-mini-grid strong {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.26rem;
  font-weight: 700;
}

.panel-mini-grid span {
  color: var(--muted);
  font-size: 0.8rem;
}

.panel-divider {
  height: 1px;
  background: var(--line-strong);
}

.hero-showcase {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.72rem;
}

.showcase-title {
  margin: 0 0 0.58rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.hero-app-list {
  display: grid;
  gap: 0.5rem;
}

.hero-app-item {
  border: 1px solid rgba(19, 38, 58, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.64rem;
  background: rgba(244, 243, 238, 0.72);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.hero-app-item:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(223, 240, 250, 0.6);
}

.hero-app-item h4 {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-app-item p {
  margin: 0.24rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero-app-item span {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.42rem;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.85);
}

.panel-catalog-link {
  align-self: flex-start;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid rgba(19, 38, 58, 0.3);
  padding-bottom: 0.1rem;
}

.trust-band {
  margin-top: 1.08rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.trust-band article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.98rem;
  box-shadow: var(--shadow-soft);
}

.trust-band span {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust-band p {
  margin: 0.33rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  margin-top: 2.2rem;
}

.section-heading h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.56rem, 3.2vw, 2.34rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.section-heading p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.apps-grid {
  margin-top: 0.96rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0.9rem;
}

.apps-grid.featured {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.app-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 241, 0.9));
  padding: 1.04rem;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.app-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.app-card-featured {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(223, 240, 250, 0.5));
  border-color: rgba(29, 123, 183, 0.26);
}

.app-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.65rem;
}

.app-card h3 {
  margin: 0;
  font-size: 1.12rem;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

.app-card-head span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.app-card p {
  margin: 0.62rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.store-row {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.store-row span {
  border: 1px solid rgba(29, 123, 183, 0.34);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.69rem;
  color: var(--ink);
  background: rgba(223, 240, 250, 0.66);
}

.card-foot {
  margin-top: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
}

.card-foot strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  padding: 1.2rem;
}

.empty-state h3 {
  margin: 0;
}

.empty-state p {
  margin: 0.44rem 0 0;
  color: var(--muted);
}

.product-hero {
  margin-top: 2rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 0.95rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.95rem;
  align-items: stretch;
}

.product-intro {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(223, 240, 250, 0.58));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3.1vw, 2rem);
  display: flex;
  flex-direction: column;
}

.product-intro h1 {
  margin: 0.52rem 0 0.82rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.product-chips {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.product-chips span {
  border: 1px solid rgba(19, 38, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.22rem 0.58rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.store-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.product-footnote {
  margin: auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
}

.product-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(233, 245, 252, 0.7));
  box-shadow: var(--shadow-soft);
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.product-visual > img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(19, 38, 58, 0.1);
}

.cover-fallback {
  width: 100%;
  min-height: 320px;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    radial-gradient(circle at 12% 18%, rgba(29, 123, 183, 0.22), transparent 48%),
    radial-gradient(circle at 86% 16%, rgba(42, 167, 182, 0.2), transparent 42%),
    #fdfefe;
  border: 1px solid rgba(19, 38, 58, 0.1);
  padding: 1.3rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.65rem;
}

.cover-icon {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(19, 38, 58, 0.16);
  background: #fff;
}

.cover-fallback h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.cover-fallback p {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.floating-metrics {
  display: grid;
  gap: 0.44rem;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.floating-metrics article {
  border: 1px solid rgba(19, 38, 58, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 0.56rem 0.62rem;
}

.floating-metrics strong {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
}

.floating-metrics span {
  margin-top: 0.16rem;
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
}

.detail-overview {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 0.85rem;
}

.detail-story,
.detail-values article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.detail-story {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  padding: 1.15rem;
}

.detail-story h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  line-height: 1.2;
}

.detail-richtext {
  margin-top: 0.65rem;
  color: #355069;
}

.detail-richtext p {
  margin: 0;
}

.detail-richtext p + p {
  margin-top: 0.9rem;
}

.detail-values {
  display: grid;
  gap: 0.64rem;
}

.detail-values article {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.86rem;
}

.detail-values h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
}

.detail-values p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.policy-card h1 {
  margin: 0.52rem 0 0.86rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.policy-card h2 {
  margin: 1.3rem 0 0.45rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.22;
}

.policy-card p {
  margin: 0;
  color: #2f4a61;
}

.policy-card p + p {
  margin-top: 0.72rem;
}

.policy-meta {
  margin-bottom: 1rem !important;
  color: var(--muted) !important;
}

.site-footer {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(233, 245, 252, 0.6));
  padding: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-title {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.24rem, 2.2vw, 1.52rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.footer-subtitle {
  margin: 0.36rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.footer-actions a {
  font-weight: 700;
}

.footer-legal-link {
  font-size: 0.86rem;
  color: var(--muted);
}

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

.footer-actions span {
  color: var(--muted);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero,
  .product-hero-grid,
  .detail-overview {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-shell {
    width: min(1180px, 94vw);
    padding-top: 0.52rem;
  }

  .site-header {
    display: flex;
    border-radius: 20px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .apps-grid.featured {
    grid-template-columns: 1fr;
  }

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

  .floating-metrics { grid-template-columns: 1fr; }

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

  .footer-actions {
    align-items: flex-start;
  }
}
