:root {
  --blue-950: #06143a;
  --blue-900: #071b4d;
  --blue-800: #0a2e73;
  --blue-700: #0f4fd8;
  --blue-600: #1463ff;
  --blue-500: #2f7dff;
  --blue-200: #cfe0ff;
  --blue-100: #eaf2ff;
  --blue-050: #f5f8ff;
  --teal-500: #10bfc6;
  --ink: #132033;
  --muted: #526174;
  --line: #dce7f5;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(6, 20, 58, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--blue-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--blue-800);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 4px;
  border-radius: 6px;
}

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

h1,
h2,
h3 {
  color: var(--blue-950);
  line-height: 1.1;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}

ul {
  margin-top: 0;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 790px;
}

.section {
  padding: 84px 0;
}

.site-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(220, 231, 245, 0.85);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--blue-950);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.brand:hover {
  color: var(--blue-900);
}

.brand-icon {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.brand-icon-large {
  width: 62px;
  height: 62px;
}

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

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-800);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--blue-950);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    linear-gradient(150deg, var(--white) 0%, var(--white) 47%, var(--blue-050) 47%, var(--blue-050) 100%);
}

.hero::after {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 52px solid rgba(20, 99, 255, 0.08);
  border-radius: 44px;
  content: "";
  transform: rotate(18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 56px;
}

.hero-text {
  max-width: 720px;
  color: #31415a;
  font-size: 1.2rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(20, 99, 255, 0.22);
}

.button.primary:hover {
  background: var(--blue-700);
  color: var(--white);
}

.button.secondary {
  border-color: var(--blue-200);
  background: var(--white);
  color: var(--blue-800);
}

.button.secondary:hover {
  border-color: var(--blue-600);
  background: var(--blue-050);
  color: var(--blue-950);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(207, 224, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 255, 0.96)),
    repeating-linear-gradient(135deg, rgba(20, 99, 255, 0.06) 0 1px, transparent 1px 22px);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(16, 191, 198, 0.16);
  border-radius: 42px;
  content: "";
  transform: rotate(20deg);
}

.panel-topline,
.panel-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.panel-title {
  margin-bottom: 4px;
  color: var(--blue-950);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.2;
}

.panel-subtitle {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.panel-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.panel-item {
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.panel-item span {
  width: 13px;
  height: 13px;
  margin-top: 7px;
  border: 3px solid var(--blue-600);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--blue-100);
}

.panel-item p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.local-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(20, 99, 255, 0.22);
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 0.88rem;
  font-weight: 850;
}

.quick-points {
  background: var(--white);
}

.quick-points h2 {
  max-width: 760px;
}

.point-grid,
.feature-grid,
.content-grid {
  display: grid;
  gap: 18px;
}

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

.point-grid article {
  padding-top: 22px;
  border-top: 4px solid var(--blue-600);
}

.point-grid p,
.feature-card p,
.content-card p,
.policy-card p {
  margin-bottom: 0;
}

.feature-band {
  background:
    linear-gradient(180deg, var(--blue-050), #eef6ff);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.feature-card,
.content-card,
.policy-card,
.check-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card,
.content-card {
  padding: 24px;
}

.feature-card {
  min-height: 232px;
}

.feature-dot {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 11px, var(--white) 11px 17px, transparent 17px),
    linear-gradient(0deg, transparent 11px, var(--white) 11px 17px, transparent 17px),
    linear-gradient(145deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 10px 20px rgba(20, 99, 255, 0.2);
}

.privacy-section {
  background: var(--white);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 48px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--blue-050), var(--white) 54%),
    var(--blue-050);
  border: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
}

.check-panel {
  padding: 28px;
  box-shadow: 0 16px 40px rgba(6, 20, 58, 0.08);
}

.check-list,
.plain-list {
  padding-left: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M6.1 11.3 9.3 14.5 16 7.5' fill='none' stroke='%230f4fd8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
  content: "";
}

.disclaimer-section {
  padding-top: 20px;
  background: var(--white);
}

.notice,
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.notice {
  background: var(--blue-950);
}

.notice h2,
.notice p {
  color: var(--white);
}

.notice p {
  margin-bottom: 0;
  opacity: 0.88;
}

.contact-cta {
  background: var(--white);
}

.cta-panel {
  background:
    linear-gradient(135deg, var(--white), var(--blue-050)),
    var(--white);
}

.cta-panel h2 {
  margin-bottom: 12px;
}

.cta-panel p {
  margin-bottom: 0;
}

.page-hero {
  padding: 76px 0 58px;
  background:
    linear-gradient(145deg, var(--blue-050), var(--white) 62%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  font-size: 1.13rem;
}

.effective-date {
  color: var(--blue-800);
  font-weight: 800;
}

.email-card {
  display: inline-flex;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid var(--blue-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-800);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(6, 20, 58, 0.08);
}

.email-card:hover {
  border-color: var(--blue-600);
  background: var(--blue-050);
}

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

.content-card {
  min-height: 240px;
}

.blue-card {
  background:
    linear-gradient(145deg, var(--blue-050), var(--white)),
    var(--blue-050);
}

.plain-list {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.prose h2 {
  margin-top: 0;
}

.prose p {
  font-size: 1.05rem;
}

.policy-layout {
  display: grid;
  gap: 18px;
}

.policy-card {
  padding: 28px;
}

.policy-card h2 {
  font-size: 1.35rem;
}

.policy-card p + p {
  margin-top: 14px;
}

.site-footer {
  padding: 54px 0 28px;
  background:
    linear-gradient(145deg, var(--blue-950), var(--blue-900)),
    var(--blue-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.7fr) minmax(160px, 0.5fr);
  gap: 34px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p,
.site-footer h2,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  max-width: 640px;
  opacity: 0.78;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer a {
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.site-footer a:hover {
  color: var(--blue-100);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .header-inner,
  .notice,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding: 70px 0 78px;
    background: linear-gradient(180deg, var(--white), var(--blue-050));
  }

  .hero-grid,
  .split-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card,
  .content-card {
    min-height: auto;
  }

  .split-panel {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 0;
  }

  .site-nav a {
    padding: 7px 9px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-panel,
  .policy-card,
  .content-card,
  .feature-card,
  .notice,
  .cta-panel,
  .split-panel {
    padding: 22px;
  }

  .button,
  .email-card {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  a,
  .button,
  .site-nav a,
  .email-card {
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  }

  .button:hover,
  .email-card:hover {
    transform: translateY(-1px);
  }
}
