@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
}

.ap-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ap-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
}

.ap-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ap-logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: #1e40af;
  text-decoration: none;
}

.ap-tag {
  font-size: 12px;
  color: #475569;
}

.ap-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ap-nav__link {
  text-decoration: none;
  font-size: 15px;
  color: #0f172a;
  opacity: 0.9;
}

.ap-nav__link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* HAMBURGER: hidden on desktop */
.ap-hamburger {
  display: none !important;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ap-hamburger__box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 24px;
  height: 18px;
}

.ap-hamburger__line {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #0f172a;
  transition: transform 150ms ease, opacity 120ms ease;
}

/* transform to "X" when active */
.ap-hamburger.ap-hamburger--active .ap-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ap-hamburger.ap-hamburger--active .ap-hamburger__line:nth-child(2) {
  opacity: 0;
}
.ap-hamburger.ap-hamburger--active .ap-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ap-hero {
  background: linear-gradient(180deg, #2f6df6 0%, #2b5ee6 100%);
  color: #ffffff;
  padding: 64px 22px;
}

.ap-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ap-hero__title {
  margin: 0 0 14px 0;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.ap-hero__subtitle {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 22px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.ap-main {
  flex: 1;
  padding: 32px 22px 60px;
}

.ap-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ap-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 24px;
}

.ap-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 28px 0 10px 0;
}

.ap-section {
  margin-bottom: 18px;
}

.ap-paragraph {
  margin: 10px 0;
  color: #475569;
  line-height: 1.6;
  font-size: 16px;
}

.ap-bullet-list {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0 26px;
}

.ap-bullet-list li {
  margin: 8px 0;
}

.ap-bullet-list a {
  text-decoration: none;
  color: #1d4ed8;
  font-weight: 600;
}

.ap-bullet-list a:hover {
  text-decoration: underline;
}

.ap-footer {
  border-top: 1px solid rgba(15,23,42,0.06);
  padding: 18px 22px;
  color: #475569;
  font-size: 13px;
  background: #fafafa;
}

.ap-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.35);
  z-index: 30;
}

.ap-overlay.ap-overlay--show {
  display: block;
}

/* MOBILE */
@media (max-width: 880px) {
  .ap-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(15,23,42,0.08);
    padding: 16px 20px 20px;
    display: none;
    flex-direction: column;
    gap: 14px;
    z-index: 40;
  }
  .ap-nav.ap-nav--open {
    display: flex;
  }
  .ap-hamburger {
    display: inline-flex !important;
  }
}
