/* ==============================
   Lower Base
============================== */

:root {
  --accent: #2f80c9;
  --accent-strong: #1f6fb2;
  --text: #172b3a;
  --subtext: #3f505d;
  --bodytext: #4f5b66;
  --line: rgba(23, 43, 58, 0.10);
  --bg-soft: #f5faff;
  --bg-pale: #edf7fc;

  --container-width: var(--site-width);
  --article-width: 760px;
  --gutter: var(--site-gutter);
}

/* BASE */
.page-bg {
  background: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 96px;
  background: var(--bg-soft);
}

.page-hero-inner,
.page-section-inner,
.page-content-inner {
  width: min(100% - var(--gutter), var(--article-width));
  margin-inline: auto;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(1.9rem, 8vw, 3.2rem);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-hero p {
  max-width: 640px;
  margin-top: 16px;
  color: var(--subtext);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 600;
}

/* CLOUD */
.page-cloud {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 1;
  width: 100%;
  height: 110px;
  line-height: 0;
  pointer-events: none;
}

.page-cloud img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION */
.page-section {
  padding: 56px 0;
}

.page-section--soft {
  background: var(--bg-soft);
}

.page-section--wide .page-section-inner {
  max-width: var(--container-width);
}

.page-content {
  padding: 40px 0 80px;
}

/* ARTICLE */
.page-article h2 {
  margin: 40px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.3rem, 6vw, 1.8rem);
  line-height: 1.45;
  font-weight: 800;
}

.page-article h2:first-of-type {
  margin-top: 0;
}

.page-article h3 {
  margin: 34px 0 14px;
  font-size: clamp(1.08rem, 4.5vw, 1.35rem);
  line-height: 1.5;
  font-weight: 800;
}

.page-article p {
  margin-bottom: 18px;
  color: var(--subtext);
  font-size: 0.95rem;
  line-height: 1.9;
}

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

.page-note {
  margin: 28px 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.page-note p {
  color: var(--subtext);
  font-size: 0.92rem;
  line-height: 1.9;
}


/* ACTIONS */
.page-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.page-btn:hover {
  transform: translateY(-1px);
}

.page-btn--primary {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: #fff;
}

.page-btn--primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.page-btn--secondary {
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.page-btn--secondary:hover {
  background: rgba(47, 128, 201, 0.08);
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}




/* TABLE */
.page-table {
  width: 100%;
  margin-top: 32px;
  border-collapse: collapse;
}

.page-table tr {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.page-table th,
.page-table td {
  display: block;
  width: 100%;

  text-align: left;
  vertical-align: top;

  font-size: 0.95rem;
  line-height: 1.65;
}

.page-table th {
  margin-bottom: 4px;
  padding: 0;

  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.page-table td {
  padding: 0;

  border: 0;

  color: var(--subtext);
  white-space: pre-line;
}

.page-table td a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.page-table td a:hover {
  opacity: 0.7;
}




/* Tablet */
@media (min-width: 768px) {
  .page-hero {
    padding: 64px 0 120px;
  }

  .page-cloud {
    height: 140px;
  }

  .page-section {
    padding: 72px 0;
  }

  .page-content {
    padding: 56px 0 104px;
  }

  .page-actions {
    flex-direction: row;
  }

  .page-btn {
    min-width: 180px;
  }

  .page-table tr {
    display: table-row;
    padding: 0;
  }

  .page-table th,
  .page-table td {
    display: table-cell;
    width: auto;
    padding: 18px 0;
  }

  .page-table th {
    width: 160px;
    white-space: nowrap;
  }

  .page-table td {
    padding-left: 24px;
  }


}

/* PC */
@media (min-width: 1024px) {
  .page-hero {
    padding: 72px 0 132px;
  }

  .page-cloud {
    height: 160px;
  }

  .page-section {
    padding: 88px 0;
  }

  .page-content {
    padding: 64px 0 120px;
  }

  .page-article p {
    font-size: 0.96rem;
    line-height: 1.95;
  }
}