.page-home {
  --home-red-soft: rgba(160, 48, 40, 0.08);
  --home-blue-soft: rgba(30, 58, 95, 0.08);
  --home-gold-line: rgba(212, 175, 55, 0.4);
  --home-radius: 18px;
  --home-shadow: 0 12px 36px rgba(30, 58, 95, 0.1);
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .section-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--grey);
  margin-bottom: 12px;
}

.page-home .home-section-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.page-home .home-section-lead {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.page-home .home-text-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-text-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.page-home .home-text-link-light {
  color: var(--white);
  border-color: var(--gold);
}

.page-home .home-text-link-light:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.page-home .btn {
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: 1px solid transparent;
}

.page-home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.18);
}

.page-home .btn-primary {
  background-color: var(--red);
  color: var(--white);
}

.page-home .btn-primary:hover {
  background-color: var(--dark-red);
}

.page-home .btn-secondary {
  background-color: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.page-home .btn-secondary:hover {
  background-color: var(--blue);
  color: var(--white);
}

.page-home .home-hero {
  padding: 88px var(--content-padding) 56px;
  background:
    radial-gradient(720px 420px at 90% 5%, rgba(160, 48, 40, 0.1), transparent 65%),
    var(--white);
  position: relative;
  overflow: hidden;
}

.page-home .home-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.page-home .home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid var(--home-gold-line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.page-home .home-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.page-home .home-hero h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.22;
  color: var(--grey);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.page-home .home-hero-lead {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 28px;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.page-home .home-hero-meta {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .home-hero-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.page-home .home-hero-visual {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-manifest {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
}

.page-home .home-mandala {
  width: 100%;
  height: 100%;
  display: block;
}

.page-home .home-hero-img {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 68%;
  max-width: 480px;
  border-radius: 180px 16px 16px 16px;
  box-shadow: var(--home-shadow);
  object-fit: cover;
  z-index: 0;
}

.page-home .home-manifest-tag {
  position: absolute;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  padding: 4px 10px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.page-home .home-manifest-tag-1 {
  top: 0;
  left: -14px;
}

.page-home .home-manifest-tag-2 {
  top: 12px;
  right: -20px;
}

.page-home .home-manifest-tag-3 {
  bottom: 24px;
  left: -24px;
}

.page-home .home-manifest-tag-4 {
  bottom: 0;
  right: -8px;
}

.page-home .home-preview {
  background: var(--light);
  padding: 48px var(--content-padding);
}

.page-home .home-preview-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.page-home .home-preview-head {
  border-left: 4px solid var(--red);
  padding-left: 16px;
}

.page-home .home-preview-head .section-heading {
  margin-bottom: 6px;
}

.page-home .home-preview-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.page-home .home-preview-menu {
  display: grid;
  gap: 8px;
}

.page-home .home-preview-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(30, 58, 95, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-preview-item:hover {
  transform: translateX(6px);
  border-color: var(--blue);
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.1);
}

.page-home .home-preview-index {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}

.page-home .home-preview-label {
  color: var(--grey);
  font-weight: 600;
  font-size: 15px;
}

.page-home .home-preview-note {
  display: none;
  grid-column: 2;
  font-size: 13px;
  color: #888;
}

.page-home .home-service {
  padding: 64px var(--content-padding);
  background: var(--white);
}

.page-home .home-service-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.page-home .home-service-banner {
  width: 100%;
  border-radius: var(--home-radius);
  margin: 32px 0;
  object-fit: cover;
  box-shadow: var(--home-shadow);
}

.page-home .home-service-cards {
  display: grid;
  gap: 20px;
}

.page-home .home-service-card {
  background: var(--light);
  border: 1px solid transparent;
  border-radius: var(--home-radius);
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--home-shadow);
}

.page-home .home-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--grey);
  margin-bottom: 12px;
}

.page-home .home-service-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-card-footnote {
  color: #777;
  font-size: 14px;
  border-top: 1px solid rgba(30, 58, 95, 0.15);
  margin-top: 16px;
  padding-top: 12px;
}

.page-home .home-activity {
  padding: 64px var(--content-padding);
  background: var(--light-blue);
}

.page-home .home-activity-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.page-home .home-activity-visual img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
  box-shadow: var(--home-shadow);
  object-fit: cover;
}

.page-home .home-activity-content .section-heading {
  margin-top: 8px;
}

.page-home .home-activity-content .home-section-lead {
  margin-bottom: 24px;
}

.page-home .home-activity-tabs {
  margin-top: 8px;
}

.page-home .tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(30, 58, 95, 0.2);
  padding-bottom: 12px;
}

.page-home .tab-button {
  background: transparent;
  border: 1px solid rgba(30, 58, 95, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--blue);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home .tab-button:hover,
.page-home .tab-button[aria-selected="true"] {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.page-home .tab-panel {
  padding-top: 20px;
}

.page-home .tab-panel h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--grey);
  margin-bottom: 8px;
}

.page-home .tab-panel p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-quota {
  padding: 72px var(--content-padding);
  background: var(--blue);
  color: rgba(250, 248, 245, 0.92);
}

.page-home .home-quota-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.page-home .home-quota .section-heading {
  color: var(--white);
}

.page-home .home-quota .home-section-lead {
  color: rgba(250, 248, 245, 0.78);
}

.page-home .home-quota-steps {
  list-style: none;
  margin: 36px auto 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.page-home .home-quota-steps li {
  background: rgba(250, 248, 245, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--home-radius);
  padding: 22px;
  display: flex;
  gap: 16px;
}

.page-home .home-step-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
  flex-shrink: 0;
}

.page-home .home-quota-steps h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.page-home .home-quota-steps p {
  color: rgba(250, 248, 245, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-quota .home-text-link {
  margin-top: 28px;
}

.page-home .home-collect {
  padding: 64px var(--content-padding);
  background: var(--white);
}

.page-home .home-collect-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.page-home .home-collect-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.page-home .home-collect-list li {
  position: relative;
  padding-left: 24px;
  color: #4a4a4a;
  line-height: 1.7;
}

.page-home .home-collect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.page-home .home-collect-tip {
  background: var(--light-blue);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--blue);
  line-height: 1.6;
}

.page-home .home-collect-visual {
  background: var(--light);
  border: 2px dashed rgba(212, 175, 55, 0.6);
  border-radius: var(--home-radius);
  padding: 28px;
  min-height: 220px;
  position: relative;
}

.page-home .home-collect-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.2);
  margin-right: 6px;
}

.page-home .home-collect-pill {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin: 16px 0 20px;
}

.page-home .home-collect-pill-mark {
  color: var(--gold);
  margin-right: 4px;
}

.page-home .home-collect-visual ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-collect-visual li {
  background: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--grey);
  border-left: 4px solid var(--gold);
}

.page-home .home-compat {
  padding: 64px var(--content-padding);
  background: var(--light);
}

.page-home .home-compat-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.page-home .home-compat-list {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.page-home .home-compat-col {
  background: var(--white);
  border-radius: var(--home-radius);
  padding: 24px;
  border-left: 4px solid var(--blue);
}

.page-home .home-compat-col h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--grey);
  margin-bottom: 12px;
}

.page-home .home-compat-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-compat-col li {
  color: #555;
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}

.page-home .home-compat-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.page-home .home-compat-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
  object-fit: cover;
  margin: 8px 0 24px;
}

.page-home .home-compat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-home .home-sitemap {
  background: var(--red);
  padding: 28px var(--content-padding);
}

.page-home .home-sitemap-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  align-items: center;
}

.page-home .home-sitemap-stat {
  color: rgba(250, 248, 245, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.page-home .home-sitemap a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-home .home-sitemap a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 767px) {
  .page-home .home-manifest-tag {
    display: none;
  }

  .page-home .home-sitemap-stat {
    flex-basis: 100%;
  }
}

@media (min-width: 768px) {
  .page-home .section-heading {
    font-size: 32px;
  }

  .page-home .home-hero {
    padding-top: 112px;
  }

  .page-home .home-hero h1 {
    font-size: 48px;
  }

  .page-home .home-preview-item {
    grid-template-columns: 48px 1fr auto;
    align-items: center;
  }

  .page-home .home-preview-note {
    display: block;
    grid-column: auto;
  }

  .page-home .home-service-cards {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-quota-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .home-collect-visual {
    min-height: 260px;
  }

  .page-home .home-compat-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
  }

  .page-home .home-preview-inner {
    grid-template-columns: 260px 1fr;
    align-items: start;
    gap: 48px;
  }

  .page-home .home-preview-head {
    position: sticky;
    top: 88px;
  }

  .page-home .home-activity-inner {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: 48px;
  }

  .page-home .home-collect-inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
  }

  .page-home .home-service {
    padding: 88px var(--content-padding);
  }

  .page-home .home-activity,
  .page-home .home-collect,
  .page-home .home-compat {
    padding: 88px var(--content-padding);
  }
}
