:root {
  --logo-blue: #4f7894;
  --logo-blue-deep: #3d6178;
  --ink: #13222d;
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --line: rgba(79, 120, 148, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 20%, #e8f0f6 0%, #f7fafc 45%, #f2f6f9 100%);
  overflow-x: hidden;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
}

.site-bg::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -50px;
  background: rgba(79, 120, 148, 0.28);
}

.site-bg::after {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: -70px;
  background: rgba(61, 97, 120, 0.18);
}

.nav-wrap {
  padding: 1.1rem 1.4rem;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-home {
  margin-right: auto;
}

.nav-home,
.nav-about,
.nav-dropdown-item {
  text-decoration: none;
  color: var(--logo-blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-home:visited,
.nav-dropdown-item:visited {
  color: var(--logo-blue-deep);
  text-decoration: none;
}

.nav-dropdown {
  display: inline-block;
  position: relative;
}

.nav-about {
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  line-height: inherit;
  cursor: pointer;
  user-select: none;
}

.nav-about:focus-visible,
.nav-dropdown-item:focus-visible,
.nav-home:focus-visible {
  outline: 2px solid rgba(79, 120, 148, 0.45);
  outline-offset: 2px;
  border-radius: 6px;
}

.nav-home:hover,
.nav-about:hover,
.nav-dropdown-item:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 170px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(19, 34, 45, 0.12);
  padding: 0.45rem;
  display: none;
  flex-direction: column;
  align-items: stretch;
  z-index: 10;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
  gap: 0.15rem;
}

.nav-dropdown-item {
  display: block;
  text-decoration: none;
  color: var(--logo-blue-deep);
  white-space: nowrap;
  padding: 0.4rem 0.45rem;
  border-radius: 8px;
}

.nav-dropdown-item:hover {
  background: var(--surface-soft);
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.2rem 1.4rem 2rem;
}

.hero {
  text-align: center;
  margin-top: 1.4rem;
  animation: rise 700ms ease forwards;
}

.hero-logo {
  width: min(760px, 62vw);
  height: auto;
}

.eyebrow {
  margin: 1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--logo-blue-deep);
}

.title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 8vw, 4.2rem);
  margin: 0.4rem 0 0;
  color: var(--logo-blue-deep);
}

.subtitle {
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.card {
  margin: 3rem auto 0;
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.65rem 1.25rem 0.9rem;
  font-size: 0.92rem;
  box-shadow: 0 10px 35px rgba(19, 34, 45, 0.08);
  animation: rise 850ms 120ms ease both;
}

.card h2 {
  font-family: "Sora", sans-serif;
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
  color: var(--logo-blue-deep);
}

.card p {
  line-height: 1.6;
}

.contact-grid {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-grid > div:last-child {
  justify-self: end;
  text-align: right;
}

.label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--logo-blue-deep);
}

.contact-grid a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer {
  margin-top: auto;
  text-align: center;
  color: #486477;
  padding: 1.25rem 1rem 2rem;
}

.footer-links {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-style: italic;
  opacity: 0.6;
}

.footer-links a {
  color: #486477;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.policy-main {
  flex: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 1.2rem 1.4rem 2rem;
}

.policy-card {
  margin: 1.2rem auto 0;
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.25rem 1.2rem;
  box-shadow: 0 10px 35px rgba(19, 34, 45, 0.08);
  animation: rise 700ms ease both;
}

.policy-card h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: var(--logo-blue-deep);
}

.effective-date {
  margin: 0.45rem 0 1rem;
  font-size: 0.86rem;
  color: #486477;
}

.policy-section {
  margin-top: 1rem;
}

.policy-section h2 {
  margin: 0 0 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--logo-blue-deep);
}

.policy-section p {
  margin: 0;
  line-height: 1.65;
}

.legal-disclaimer {
  font-size: 0.82rem;
  color: #5e7788;
}

.policy-list {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.65;
}

.policy-contact {
  margin-top: 0.45rem;
}

.policy-contact a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    padding: 1rem 1rem 0.3rem;
  }

  main {
    padding: 1rem 1rem 1.6rem;
  }

  .policy-main {
    padding: 1rem 1rem 1.6rem;
  }

  .hero {
    margin-top: 0.6rem;
  }

  .nav-dropdown-menu {
    right: 0;
    min-width: 150px;
  }

  .policy-card {
    padding: 0.95rem 1rem 1.05rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid > div:last-child {
    justify-self: start;
    text-align: left;
  }
}
