.static-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
}

.static-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.static-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

.static-page {
  background: #f5f7fb;
}

.static-hero {
  padding: 88px 0 62px;
  background:
    radial-gradient(circle at 12% 18%, rgba(43, 92, 255, 0.15), transparent 34%),
    linear-gradient(180deg, #eef4ff 0%, #f5f7fb 100%);
}

.static-hero h1 {
  margin: 18px 0 16px;
  max-width: 860px;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.static-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.static-section {
  padding: 34px 0;
}

.static-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.static-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.static-card--dark {
  background: #162033;
  color: #fff;
}

.static-card span,
.static-heading span,
.policy-alert {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.static-card--dark span {
  color: #8fb4ff;
}

.static-card h2,
.static-heading h2 {
  margin: 14px 0 14px;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.static-card p,
.static-note p,
.policy-document p,
.policy-document li {
  color: var(--muted);
  line-height: 1.85;
}

.static-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.static-list-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.static-list-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.static-list-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.static-note {
  margin-bottom: 80px;
  padding: 30px;
  border: 1px solid #d8eadf;
  border-radius: 18px;
  background: #f2fbf6;
}

.notice-list {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.notice-list article {
  min-height: 76px;
  padding: 0 26px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 1fr 120px;
  align-items: center;
  gap: 16px;
}

.notice-list article:last-child {
  border-bottom: 0;
}

.notice-list span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
}

.notice-list a {
  font-size: 16px;
  font-weight: 800;
}

.notice-list time {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.faq-list {
  display: grid;
  gap: 14px;
  padding-bottom: 90px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.8;
}

.static-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.static-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.static-form label span {
  font-size: 12px;
  font-weight: 900;
}

.static-form input,
.static-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  outline: 0;
  resize: vertical;
}

.static-form input:focus,
.static-form textarea:focus {
  border-color: var(--brand);
}

.static-form__wide {
  grid-column: 1 / -1;
}

.form-help {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.policy-document {
  max-width: 940px;
  margin: 0 auto 90px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.policy-document h2 {
  margin: 34px 0 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.policy-document h2:first-of-type {
  margin-top: 24px;
}

.policy-document ul {
  padding-left: 20px;
}

.policy-alert {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff7e7;
  color: #9a6815 !important;
  letter-spacing: 0;
  line-height: 1.6 !important;
}

.policy-date {
  margin-top: 36px;
  font-weight: 800;
}

.footer-main--extended {
  align-items: flex-start;
}

.footer-notice {
  color: #c6cfdd !important;
}

.footer-links--stack {
  min-width: 160px;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1023px) {
  .static-header__inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .static-nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }

  .static-hero {
    padding: 58px 0 42px;
  }

  .static-grid,
  .static-list-grid,
  .static-form {
    grid-template-columns: 1fr;
  }

  .static-form__wide {
    grid-column: auto;
  }

  .notice-list article {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .notice-list time {
    text-align: left;
  }

  .policy-document {
    padding: 26px 20px;
  }
}
