:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f3f6fb;
  color: #172033;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: #174fbd;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dce3ee;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  color: #172033;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  background: #fbf8f1;
  border: 1px solid #dce3ee;
  border-radius: 11px;
  display: block;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: #4b5d78;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav .admin-link {
  background: #2358d1;
  border-radius: 7px;
  color: #ffffff;
  padding: 9px 13px;
}

.page-shell {
  margin: 0 auto;
  max-width: 980px;
  padding: 54px clamp(18px, 5vw, 48px) 72px;
}

.hero {
  background:
    radial-gradient(circle at 88% 10%, rgba(74, 127, 245, 0.3), transparent 34%),
    linear-gradient(135deg, #10285c, #1f55c8 70%, #4780ee);
  color: #ffffff;
  overflow: hidden;
  padding: 78px clamp(18px, 7vw, 92px);
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(38px, 7vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  margin: 0 auto;
  max-width: 1120px;
}

.hero-copy {
  min-width: 0;
}

.hero-visual {
  justify-self: end;
  text-align: center;
}

.hero-icon-frame {
  background: #fbf8f1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(4, 16, 45, 0.28);
  padding: 10px;
  transform: rotate(2deg);
}

.hero-icon-frame img {
  border-radius: 18px;
  display: block;
  height: auto;
  max-width: 100%;
}

.hero-visual p {
  color: #dce8ff;
  font-size: 0.9rem;
  font-weight: 750;
  margin: 18px 0 0;
}

.eyebrow {
  color: #43618e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7e5ff;
}

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

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  max-width: 760px;
}

.policy-title {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.lede {
  color: #53647f;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 760px;
}

.hero .lede {
  color: #e8f0ff;
}

.hero-actions,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  text-decoration: none;
}

.button.primary {
  background: #ffffff;
  color: #173e91;
}

.button.dark {
  background: #2358d1;
  color: #ffffff;
}

.button.secondary {
  border-color: #cbd6e7;
  color: #263953;
}

.hero .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.56);
  color: #ffffff;
}

.button:hover,
.site-nav a:hover,
.brand:hover {
  filter: brightness(0.95);
}

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid #f4a33a;
  outline-offset: 3px;
}

.card-grid {
  margin-top: 28px;
}

.card {
  background: #ffffff;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  flex: 1 1 250px;
  padding: 24px;
}

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

.policy {
  background: #ffffff;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  margin-top: 30px;
  padding: clamp(22px, 5vw, 42px);
}

.policy h2 {
  font-size: 1.25rem;
  margin-top: 34px;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy h3 {
  font-size: 1rem;
  margin-top: 24px;
}

.policy p,
.policy li {
  color: #45566f;
  line-height: 1.7;
}

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

.notice {
  background: #edf4ff;
  border: 1px solid #bfd2f6;
  border-radius: 9px;
  color: #29466e;
  margin: 24px 0;
  padding: 16px;
}

.notice.warning {
  background: #fff7e8;
  border-color: #e9cc96;
  color: #704b18;
}

.download-section {
  background: #ffffff;
  border-top: 1px solid #dce3ee;
  scroll-margin-top: 92px;
}

.download-inner {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  margin: 0 auto;
  max-width: 1120px;
  padding: 70px clamp(18px, 5vw, 64px) 78px;
}

.download-copy h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.download-copy p:not(.eyebrow) {
  color: #53647f;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 620px;
}

.store-area {
  background: #f3f6fb;
  border: 1px solid #dce3ee;
  border-radius: 16px;
  display: grid;
  gap: 13px;
  padding: 24px;
}

.store-placeholder {
  background: #172033;
  border-radius: 10px;
  color: #ffffff;
  display: grid;
  min-height: 70px;
  padding: 13px 18px;
}

.store-placeholder span {
  align-self: end;
  color: #cbd6e7;
  font-size: 0.76rem;
  font-weight: 650;
}

.store-placeholder strong {
  font-size: 1.3rem;
}

.store-area p {
  color: #65758d;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 3px 2px 0;
}

.request-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.request-form label {
  color: #354862;
  display: grid;
  font-weight: 750;
  gap: 7px;
}

.request-form input[type='email'],
.request-form input[type='text'] {
  border: 1px solid #bbc8da;
  border-radius: 7px;
  color: #172033;
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.checkbox-label {
  align-items: flex-start;
  display: flex !important;
  font-weight: 500 !important;
  gap: 10px !important;
}

.checkbox-label input {
  height: 18px;
  margin-top: 3px;
  width: 18px;
}

.form-status {
  border-radius: 8px;
  display: none;
  padding: 14px;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: #eaf7ee;
  border: 1px solid #add8b9;
  color: #245e35;
}

.form-status.error {
  background: #fff0f0;
  border: 1px solid #e7b7b7;
  color: #8a2d2d;
}

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

.site-footer {
  border-top: 1px solid #dce3ee;
  color: #5a6a82;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 64px) 34px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 13px;
  }

  .hero {
    padding-bottom: 62px;
    padding-top: 62px;
  }

  .hero-inner,
  .download-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: center;
    max-width: 260px;
  }

  .download-inner {
    padding-bottom: 60px;
    padding-top: 58px;
  }
}
