:root {
  color-scheme: light;
  --ink: #00204c;
  --muted: #49617e;
  --blue: #0000aa;
  --pale: #eaf2ff;
  --line: #cedbec;
  --radius: 0.7rem;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: var(--blue);
  text-underline-offset: 0.2em;
}
a:hover {
  text-decoration-thickness: 2px;
}
img {
  max-width: 100%;
  height: auto;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #235bc4;
  outline-offset: 4px;
}
h1,
h2,
h3 {
  line-height: 1.22;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  margin: 0 0 1.6rem;
}
h2 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  margin: 2rem 0 1rem;
}
h3 {
  font-size: 1.3rem;
  margin: 1.75rem 0 0.75rem;
}
p {
  margin: 0 0 1.2rem;
}
.site-header {
  max-width: 1200px;
  margin: auto;
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 70px;
  max-height: 70px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.site-header nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-header nav a[aria-current='page'] {
  text-decoration: underline;
}
.button {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}
.button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.button.small {
  padding: 0.55rem 0.9rem;
}
.button:hover {
  filter: brightness(0.9);
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: #fff;
  padding: 1rem;
  z-index: 20;
}
.skip-link:focus {
  top: 1rem;
}
.hero {
  background: var(--ink);
  color: #fff;
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}
.hero-logo {
  width: min(500px, 85%);
  max-height: 150px;
  object-fit: contain;
}
.hero-intro {
  max-width: 690px;
  margin: 2rem auto;
  font-size: 1.2rem;
}
.store-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.store-badge {
  width: auto;
  height: 44px;
}
.store-badge.google {
  height: 58px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.point-icon {
  height: 65px;
  width: auto;
  object-fit: contain;
}
.hero-points h2,
.hero-points p:first-of-type {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.65rem 0 0.3rem;
}
.hero-points p {
  margin: 0;
}
.home-overview {
  padding: 4.5rem 2rem 2rem;
  max-width: 840px;
  text-align: center;
  margin: auto;
  font-size: 1.18rem;
}
.home-overview h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1160px;
  padding: 2rem 2rem 4rem;
  margin: auto;
}
.feature-icon {
  width: 70px;
}
.feature-list h2 {
  margin-top: 1rem;
}
.phone-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 3rem;
  background: var(--pale);
  padding: 3rem max(2rem, calc((100vw - 1100px) / 2));
  text-align: center;
}
.phone-image {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}
.qr-image {
  width: 140px;
  image-rendering: pixelated;
}
.prose {
  max-width: 850px;
  margin: auto;
  padding: 4rem 2rem 5rem;
  overflow-wrap: anywhere;
}
.prose li {
  margin: 0.4rem 0;
}
.prose ul,
.prose ol {
  padding-left: 1.6rem;
}
.prose h1 ~ .content-image {
  display: block;
  max-height: 460px;
  margin: 2rem auto;
  object-fit: contain;
}
.content-image {
  display: block;
  max-height: 450px;
  width: auto;
  margin: 1.5rem auto;
  object-fit: contain;
}
.resources {
  max-width: 1180px;
  margin: auto;
  padding: 4rem 2rem;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.article-card {
  text-decoration: none;
  display: block;
}
.article-thumbnail {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
}
.article-card h2 {
  margin: 1rem 0 2rem;
  font-size: 1.45rem;
}
.article-card:hover h2 {
  text-decoration: underline;
}
footer {
  border-top: 1px solid var(--line);
  padding: 3rem max(2rem, calc((100vw - 1100px) / 2));
  background: var(--pale);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
.footer-top h2 {
  margin-top: 0;
}
.footer-top nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 2rem;
  align-content: start;
}
.footer-top nav a {
  font-size: 0.92rem;
}
.company {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.privacy-link {
  border: 0;
  background: none;
  padding: 0;
  color: var(--blue);
  font-size: 0.9rem;
  text-decoration: underline;
}
form {
  margin-top: 2rem;
}
form label {
  display: block;
  font-weight: 600;
  margin: 0 0 1.3rem;
}
input,
textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #8fa6c2;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--ink);
  margin-top: 0.35rem;
}
textarea {
  resize: vertical;
}
.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#form-status {
  margin-top: 1rem;
}
.email-fallback {
  font-size: 0.95rem;
}
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 700px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 36px #00204c30;
  padding: 1.5rem;
  border-radius: var(--radius);
  z-index: 10;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: 1px solid var(--ink);
  background: #fff;
  border-radius: 0.35rem;
  padding: 0.6rem 0.9rem;
  color: var(--ink);
}
.cookie-banner > a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
}
@media (max-width: 760px) {
  .site-header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  .site-header nav {
    justify-content: center;
    gap: 0.8rem 1.1rem;
  }
  .brand img {
    width: 150px;
  }
  .hero {
    padding: 2.5rem 1.3rem;
  }
  .hero-intro {
    font-size: 1.05rem;
  }
  .hero-points {
    gap: 1rem;
  }
  .hero-points p {
    font-size: 0.9rem;
  }
  .hero-points h2,
  .hero-points p:first-of-type {
    font-size: 1rem;
  }
  .point-icon {
    height: 50px;
  }
  .feature-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem 3rem;
  }
  .feature-list > div {
    border-top: 1px solid var(--line);
    padding-top: 2rem;
  }
  .home-overview {
    padding: 3rem 1.5rem 1rem;
  }
  .phone-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .prose,
  .resources {
    padding: 2.5rem 1.5rem 3rem;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  footer {
    padding: 2.5rem 1.5rem;
  }
  .name-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  a,
  button {
    transition: background-color 0.15s, color 0.15s;
  }
}
@media print {
  .site-header,
  .cookie-banner,
  .privacy-link {
    display: none;
  }
  footer {
    background: none;
  }
  .prose {
    max-width: none;
    padding: 0;
  }
  a {
    color: inherit;
  }
  h1,
  h2,
  h3 {
    break-after: avoid;
  }
}

.hero .button.primary {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-icon {
  width: 32px;
  height: 32px;
}
