@font-face {
  font-family: "Roboto Fallback";
  src: local("Arial");
  ascent-override: 92.7734%;
  descent-override: 24.4141%;
  line-gap-override: 0%;
  size-adjust: 100.3645%;
}

:root {
  color-scheme: light;
  --app-font-family: "Roboto", "Roboto Fallback", "Segoe UI", Arial, sans-serif;
  --color-primary: #2563eb;
  --color-primary-strong: #1d4ed8;
  --color-primary-soft: #eff6ff;
  --color-text: #172033;
  --color-muted: #64748b;
  --color-border: #dbe4f0;
  --color-surface: #ffffff;
  --color-page: #f5f8fc;
  --shadow-card: 0 18px 45px rgba(37, 99, 235, 0.12);
  --radius-card: 22px;
  --content-width: 1060px;
  font-family: var(--app-font-family);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.92), rgba(255, 255, 255, 0.8) 420px),
    var(--color-page);
  font-family: var(--app-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(219, 228, 240, 0.92);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.site-header__inner,
.site-footer__inner,
.page {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-inline: 18px;
}

.site-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary-strong);
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
  font-size: 15px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.site-nav a,
.site-footer a {
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-primary-strong);
}

.main {
  flex: 1;
}

.page {
  padding-block: 34px 56px;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero__content {
  display: grid;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: var(--color-primary-strong);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  color: #0f172a;
  font-family: var(--app-font-family);
  font-size: clamp(2.45rem, 11vw, 4.8rem);
  line-height: 1.02;
  font-weight: 750;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: #16243b;
  font-family: var(--app-font-family);
  font-size: clamp(1.45rem, 5vw, 2.05rem);
  line-height: 1.12;
  font-weight: 750;
}

h3 {
  margin-bottom: 8px;
  color: #172033;
  font-family: var(--app-font-family);
  font-size: 1.05rem;
  font-weight: 750;
}

p {
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.hero__lead {
  color: #24334d;
  font-size: clamp(1.12rem, 4vw, 1.45rem);
  font-weight: 750;
  line-height: 1.35;
}

.hero__text {
  max-width: 680px;
  color: #475569;
  font-size: 1.06rem;
}

.future-note {
  max-width: 560px;
  color: #64748b;
  font-size: 0.96rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 13.3333px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.button--secondary {
  border-color: var(--color-border);
  color: var(--color-primary-strong);
  background: var(--color-surface);
}

.preview-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 18px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.phone-preview {
  min-height: 360px;
  border: 1px solid #cbd8ea;
  border-radius: 28px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    linear-gradient(160deg, rgba(37, 99, 235, 0.11), transparent 48%),
    #ffffff;
}

.phone-preview__bar {
  width: 68px;
  height: 6px;
  border-radius: 999px;
  justify-self: center;
  background: #dbe4f0;
}

.phone-preview__screen {
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 12px;
  background: var(--color-primary-soft);
}

.phone-preview__item {
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.section-grid {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 22px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.feature-list {
  margin: 0;
  padding-left: 19px;
  color: var(--color-muted);
  line-height: 1.75;
}

.story {
  display: grid;
  gap: 15px;
}

.placeholder {
  border: 1px dashed #adc2df;
  border-radius: var(--radius-card);
  padding: 28px;
  color: var(--color-muted);
  background: rgba(239, 246, 255, 0.62);
  text-align: center;
}

.simple-page {
  display: grid;
  gap: 20px;
}

.simple-page__card {
  max-width: 760px;
}

.document-card {
  max-width: 860px;
  display: grid;
  gap: 24px;
}

.document-meta {
  color: #475569;
  font-weight: 650;
}

.document-section {
  display: grid;
  gap: 10px;
}

.document-section h2,
.contact-report h2 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 4vw, 1.55rem);
}

.contact-report {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.help-list {
  display: grid;
  gap: 14px;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.link-list a {
  color: var(--color-primary-strong);
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: #ffffff;
}

.site-footer__inner {
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

@media (min-width: 760px) {
  .page {
    padding-block: 56px 74px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  }

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

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

@media (max-width: 640px) {
  .site-header__inner {
    min-height: auto;
    padding-block: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
