@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Material Icons Original";
  src: url("/assets/fonts/material-icons-original.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome Brands Original";
  src: url("/assets/fonts/font-awesome-brands-original.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome Solid Original";
  src: url("/assets/fonts/font-awesome-solid-original.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: block;
}

:root {
  --blue-950: #041a4a;
  --blue-800: #0b2e73;
  --blue-100: #e8efff;
  --gold: #fed600;
  --gold-dark: #c9a900;
  --ink: #172033;
  --muted: #5f6878;
  --surface: #ffffff;
  --page: #f5f7fb;
  --line: #dbe1eb;
  --shadow: 0 18px 48px rgba(4, 26, 74, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --content: 1100px;
}

.material-icon,
.fa-brand,
.fa-solid {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.material-icon {
  font-family: "Material Icons Original";
  font-weight: normal;
}

.fa-brand {
  font-family: "Font Awesome Brands Original";
  font-weight: normal;
}

.fa-solid {
  font-family: "Font Awesome Solid Original";
  font-weight: 900;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: linear-gradient(180deg, #f8faff 0%, #f3f4f6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(11, 46, 115, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--blue-950);
  color: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(219, 225, 235, 0.72);
  background: rgba(248, 250, 255, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell,
.shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
}

.brand img {
  width: 102px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #273147;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue-950);
  background: rgba(254, 214, 0, 0.2);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue-950);
  background: #fff;
  cursor: pointer;
}

.store-banner {
  position: fixed;
  z-index: 200;
  top: 86px;
  left: 50%;
  width: min(calc(100% - 28px), 680px);
  padding: 12px 12px 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(254, 214, 0, 0.7);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  box-shadow: 0 18px 45px rgba(4, 26, 74, 0.3);
  transform: translateX(-50%);
}

.store-banner[hidden] {
  display: none;
}

.store-banner strong,
.store-banner span {
  display: block;
}

.store-banner span {
  color: #dbe5ff;
  font-size: 0.84rem;
}

.store-banner__copy {
  flex: 1;
}

.store-banner__action,
.store-banner__close {
  border: 0;
  cursor: pointer;
}

.store-banner__action {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue-950);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.store-banner__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

main {
  min-height: calc(100vh - 160px);
}

.hero {
  padding: 56px 0 52px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  color: #111827;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero__copy {
  max-width: 610px;
  color: #30394b;
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: var(--blue-100);
  box-shadow: var(--shadow);
}

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

.hero__media::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.58));
}

.hero__quote {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  margin: 0;
  color: #fff;
  font-weight: 750;
}

.download-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-height: 50px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(4, 26, 74, 0.16);
  border-radius: 999px;
  color: var(--blue-950);
  background: #fff;
  box-shadow: 0 8px 20px rgba(4, 26, 74, 0.06);
  font-weight: 820;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-button:hover {
  box-shadow: 0 12px 26px rgba(4, 26, 74, 0.12);
  transform: translateY(-2px);
}

.store-button__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.section {
  padding: 38px 0 52px;
}

.section--soft {
  border-block: 1px solid rgba(219, 225, 235, 0.76);
  background: rgba(255, 255, 255, 0.58);
}

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

.section-heading h2 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-grid,
.function-grid,
.integration-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.function-card,
.integration-card,
.legal-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(4, 26, 74, 0.055);
}

.feature-card {
  overflow: hidden;
}

.feature-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-100);
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.feature-card:hover img {
  transform: scale(1.025);
}

.badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue-950);
  background: rgba(254, 214, 0, 0.94);
  font-size: 0.78rem;
  font-weight: 850;
}

.feature-card__body,
.function-card,
.integration-card {
  padding: 20px;
}

.feature-card h3,
.function-card h3,
.integration-card h3,
.legal-card h2 {
  margin-bottom: 8px;
  color: var(--blue-950);
  line-height: 1.25;
}

.feature-card p,
.function-card p,
.integration-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.function-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-950);
  background: rgba(254, 214, 0, 0.28);
  font-size: 1.3rem;
}

.clean-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #4e586a;
}

.clean-list li + li {
  margin-top: 5px;
}

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

.integration-card {
  position: relative;
  overflow: hidden;
}

.integration-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--gold);
}

.social-row,
.footer-links,
.index-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.social-link,
.index-link {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-950);
  background: #fff;
  font-weight: 760;
  text-decoration: none;
}

button.social-link {
  cursor: pointer;
}

.social-link:hover,
.index-link:hover {
  border-color: rgba(11, 46, 115, 0.35);
  background: rgba(254, 214, 0, 0.16);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.footer-links {
  margin: 18px 0 12px;
}

.footer-links a {
  padding: 6px 8px;
  color: var(--blue-800);
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.page-hero {
  padding: 40px 0 18px;
}

.page-hero__card {
  padding: clamp(22px, 5vw, 38px);
  border: 1px solid rgba(254, 214, 0, 0.34);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(254, 214, 0, 0.2), #fff 70%);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-hero__subtitle {
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.08rem;
}

.updated {
  color: #6e7685;
  font-size: 0.86rem;
}

.index-links {
  margin-top: 18px;
  justify-content: flex-start;
}

.index-link {
  font-size: 0.82rem;
}

.legal-content {
  padding: 16px 0 48px;
}

.legal-card {
  padding: 22px;
  scroll-margin-top: 96px;
}

.legal-card + .legal-card {
  margin-top: 16px;
}

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

.legal-card p,
.legal-card li {
  color: #4a5466;
}

.support-wrap {
  padding: 42px 0 64px;
}

.support-card {
  max-width: 600px;
  margin-inline: auto;
  padding: clamp(22px, 5vw, 34px);
}

.support-card h1 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: clamp(2rem, 5vw, 3rem);
}

.support-card > p {
  color: var(--muted);
}

.field {
  margin-top: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #293247;
  font-size: 0.9rem;
  font-weight: 760;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bec6d3;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue-800);
  outline: 3px solid rgba(11, 46, 115, 0.12);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.submit-button {
  width: 100%;
  min-height: 50px;
  margin-top: 22px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--blue-800);
  cursor: pointer;
  font-weight: 820;
}

.submit-button:hover {
  background: var(--blue-950);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.84rem;
}

.form-note {
  color: var(--muted);
}

.form-status {
  min-height: 1.4em;
  color: var(--blue-800);
  font-weight: 730;
}

.form-status[data-state="error"] {
  color: #a32121;
}

.form-status[data-state="success"] {
  color: #19733b;
}

.not-found {
  min-height: calc(100vh - 154px);
  display: grid;
  place-items: center;
  padding: 40px 24px;
  text-align: center;
}

.not-found h1 {
  color: var(--blue-950);
}

@media (max-width: 860px) {
  .hero__grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy-block {
    text-align: center;
  }

  .hero__copy {
    margin-inline: auto;
  }

  .download-row {
    justify-content: center;
  }

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

@media (max-width: 680px) {
  .nav-shell,
  .shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 94px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    padding: 10px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav[data-open="true"] {
    display: flex;
  }

  .main-nav a {
    padding: 11px 12px;
  }

  .store-banner {
    top: 78px;
  }

  .store-banner__copy span {
    display: none;
  }

  .store-banner__action {
    padding-inline: 12px;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.8rem);
  }

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

  .feature-card {
    max-width: 420px;
    margin-inline: auto;
  }

  .page-hero {
    padding-top: 24px;
  }

  .legal-card {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Portada pública fiel a la versión Flutter, sin cargar Flutter/CanvasKit. */
body {
  color: rgba(0, 0, 0, 0.87);
  background: linear-gradient(180deg, #f8faff 0%, #f3f4f6 100%);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.site-header {
  min-height: 64px;
  border: 0;
  background: rgba(248, 250, 255, 0.94);
  backdrop-filter: none;
}

.nav-shell,
.shell {
  width: min(100%, 1100px);
  padding-right: 24px;
  padding-left: 24px;
}

.nav-shell {
  min-height: 64px;
  gap: 16px;
}

.brand img {
  width: auto;
  height: 60px;
}

.main-nav {
  gap: 16px;
}

.main-nav a {
  padding: 8px 10px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: rgba(0, 0, 0, 0.87);
  background: transparent;
}

.store-banner {
  top: 10px;
  width: min(calc(100% - 28px), 720px);
  padding: 12px 8px 12px 12px;
  gap: 10px;
  border: 1.2px solid rgba(254, 214, 0, 0.74);
  color: #fff;
  background: linear-gradient(135deg, #041a4a, #0b2e73);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.store-banner__lead {
  min-width: 0;
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
}

.store-banner__app-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(254, 214, 0, 0.78);
  border-radius: 11px;
  background: #fed600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

.store-banner__copy strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.store-banner__copy .store-banner__subtitle {
  display: block;
  color: #f4f2c9;
  font-size: 12px;
  font-weight: 600;
}

.store-banner__copy strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.store-banner__action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  color: #052465;
  background: #fed600;
  font-size: 14px;
  font-weight: 800;
}

.store-banner__action .fa-brand {
  display: inline-block;
  color: #052465;
  font-size: 16px;
}

.store-banner__action [data-store-action-name] {
  display: inline;
  color: #052465;
  font-size: inherit;
  font-weight: inherit;
}

.store-banner__close {
  flex: 0 0 36px;
}

.hero {
  padding: 48px 0;
}

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

.hero h1 {
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.hero__copy {
  max-width: none;
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.87);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
}

.hero__copy + .hero__copy {
  margin-top: 0;
}

.hero__media {
  box-shadow: none;
}

.hero__media::after {
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
}

.hero__quote {
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.hero__quote::before {
  margin-right: 8px;
  content: "\f04cd";
  font-family: "Material Icons Original";
  font-size: 24px;
}

.download-row {
  margin-top: 0;
  gap: 12px;
}

.store-button {
  min-height: 0;
  padding: 0 18px;
  gap: 10px;
  border: 1.2px solid rgba(213, 173, 54, 0.78);
  color: #052465;
  background: linear-gradient(135deg, rgba(254, 214, 0, 0.98), rgba(244, 242, 201, 0.96));
  box-shadow: 0 7px 14px rgba(5, 36, 101, 0.14);
  font-weight: 900;
}

.store-button:hover {
  box-shadow: 0 7px 14px rgba(5, 36, 101, 0.14);
  transform: scale(1.05);
}

.store-button--normal {
  width: 206px;
  min-width: 206px;
  height: 56px;
  padding: 0 20px;
}

.store-button--compact {
  min-width: 158px;
  height: 46px;
}

.store-button__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(254, 214, 0, 0.55);
  border-radius: 50%;
  color: #052465;
  background: rgba(254, 214, 0, 0.14);
  font-size: 20px;
}

.store-button--compact .store-button__icon {
  font-size: 18px;
}

.store-button__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1;
}

.store-button__copy small {
  color: rgba(5, 36, 101, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18px;
}

.store-button__copy strong {
  margin-top: 3px;
  font-size: 14px;
  letter-spacing: 0.15px;
}

.section {
  padding: 0 0 48px;
}

.section-heading {
  max-width: none;
  margin: 0 0 24px;
}

.section-heading h2 {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.87);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-heading > p {
  margin: 12px 0 0;
  color: rgba(0, 0, 0, 0.87);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.section-heading .download-row {
  margin-top: 20px;
}

.download-row--compact {
  justify-content: center;
  gap: 10px;
}

.feature-grid,
.function-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.feature-card,
.function-card,
.integration-card {
  border-color: rgba(203, 213, 225, 0.35);
  background: #fff;
}

.feature-card {
  width: 340px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

.feature-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(45deg, rgba(5, 36, 101, 0.55), transparent 65%);
}

.badge {
  z-index: 1;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #052465;
  background: rgba(254, 214, 0, 0.85);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.26);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1;
}

.badge .material-icon {
  font-size: 18px;
}

.feature-card__body {
  padding: 16px;
}

.feature-card h3 {
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.feature-card p {
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 14px;
  line-height: 1.38;
}

.feature-card__accent {
  width: 42px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: #fed600;
}

.function-card {
  width: 340px;
  padding: 16px 16px 14px;
  border: 0;
  border-radius: 16px;
  box-shadow: none;
}

.function-card__icon {
  width: auto;
  height: auto;
  margin-bottom: 10px;
  display: block;
  color: #052465;
  background: transparent;
  font-size: 28px;
}

.function-card h3 {
  margin-bottom: 8px;
  color: #052465;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 22px;
  padding: 3px 0 3px 24px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  line-height: 1.25;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "\e159";
  color: #d5ad36;
  font-family: "Material Icons Original";
  font-size: 16px;
  line-height: 1;
}

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

.integration-card {
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

.integration-card::before {
  display: none;
}

.integration-card__header {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(254, 214, 0, 0.2), rgba(254, 214, 0, 0.08));
}

.integration-card__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #052465;
  background: rgba(254, 214, 0, 0.2);
  font-size: 24px;
}

.integration-card h3 {
  margin-bottom: 3px;
  color: #052465;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.integration-card__header p {
  margin: 0;
  color: #5f6368;
  font-size: 12px;
  line-height: 1.3;
}

.integration-card > .check-list {
  padding: 10px 16px 16px;
}

.integration-card > .check-list li {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 28px;
  line-height: 1.35;
}

.integration-card > .check-list li::before {
  top: 7px;
  font-size: 18px;
}

.social-section {
  padding: 8px 0 36px;
}

.social-section .section-heading {
  margin-bottom: 20px;
}

.social-section .section-heading h2 {
  color: #052465;
}

.social-row {
  gap: 14px;
}

.social-link,
button.social-link {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(203, 213, 225, 0.45);
  border-radius: 50%;
  color: #052465;
  background: #fff;
  box-shadow: 0 4px 10px rgba(5, 36, 101, 0.06);
  font-size: 18px;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(203, 213, 225, 0.45);
  background: #fff;
  transform: scale(1.06);
}

.site-footer {
  padding: 28px 0;
  border: 0;
  background: #fff;
}

.site-footer .download-row {
  margin-top: 8px;
}

.footer-links {
  margin: 12px 0 8px;
  gap: 16px;
}

.footer-links a {
  padding: 8px;
  color: #675f00;
  font-size: 14px;
  font-weight: 500;
}

.copyright {
  color: #5f6368;
  font-size: 12px;
}

@media (max-width: 899px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy-block,
  .hero__copy {
    text-align: center;
  }

  .hero__copy-block .download-row {
    justify-content: center;
  }

  .hero__media {
    margin-top: 0;
  }
}

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

  .brand img {
    height: 44px;
  }

  .menu-button {
    display: grid;
    place-items: center;
    border: 0;
    color: #052465;
    background: transparent;
    font-family: "Material Icons Original";
    font-size: 24px;
  }

  .main-nav {
    gap: 0;
  }
}

@media (max-width: 620px) {
  .store-banner {
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
  }

  .store-banner__lead {
    padding-right: 36px;
  }

  .store-banner__action {
    width: 100%;
  }

  .store-banner__close {
    position: absolute;
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .shell {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .feature-card,
  .function-card {
    width: 100%;
  }

  .integration-card__header {
    align-items: flex-start;
    padding: 14px 12px;
  }

  .integration-card__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 20px;
  }

  .integration-card > .check-list {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 459px) {
  .store-button--normal {
    width: 100%;
  }

  .hero__copy-block .download-row {
    align-items: stretch;
    flex-direction: column;
  }

  .download-row--compact .store-button {
    min-width: 145px;
  }
}
