:root {
  --ink: #032b43;
  --ink-soft: #33566d;
  --sky: #0a84c6;
  --sky-soft: #eaf5fb;
  --line: rgba(3, 43, 67, 0.12);
  --surface: #ffffff;
  --surface-soft: #f6fbff;
  --shadow: 0 24px 60px rgba(3, 43, 67, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(10, 132, 198, 0.08), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #f7fafc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 43, 67, 0.95);
  backdrop-filter: blur(16px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.site-logo {
  font-family: "Monoton", cursive;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  letter-spacing: 0.24rem;
  line-height: 1;
}

.site-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-menu a:hover,
.site-menu a.is-active {
  color: #fff;
}

.site-menu .site-button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 0.9rem;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.site-menu .site-button-link:hover {
  color: var(--ink);
  background: #eaf5fb;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 12, 27, 0.56);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.site-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 166, 251, 0.16), transparent 28%),
    linear-gradient(135deg, #032b43, #073b57);
  color: #fff;
  padding: 5.5rem 0 4.75rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.page-title,
.section-title {
  margin: 1rem 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-summary {
  max-width: 46rem;
  margin-top: 1.5rem;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.hero-card {
  padding: 1.6rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.hero-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.hero-card p {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.page-main {
  padding: 4.25rem 0 5rem;
}

.page-grid {
  display: grid;
  gap: 1.5rem;
}

.page-grid.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-card,
.faq-item,
.form-shell,
.policy-shell {
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-card {
  padding: 1.75rem;
}

.section-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.section-card p,
.policy-shell p,
.policy-shell li {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading .eyebrow {
  color: var(--sky);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading .section-title {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--ink);
}

.section-heading p {
  max-width: 48rem;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.callout {
  padding: 1.4rem 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(10, 132, 198, 0.14);
  background: var(--sky-soft);
  color: var(--ink);
}

.callout strong {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-answer {
  padding: 0 1.4rem 1.35rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

.policy-shell {
  padding: 2rem;
}

.policy-shell + .policy-shell {
  margin-top: 1.25rem;
}

.policy-shell h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--ink);
}

.policy-shell ul {
  margin: 0;
  padding-left: 1.2rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.meta-pill {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: #eef6fb;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-shell {
  padding: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.text-field,
.text-area {
  width: 100%;
  border: 1px solid rgba(3, 43, 67, 0.14);
  border-radius: 1rem;
  background: #f8fbfe;
  padding: 0.95rem 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.text-field:focus,
.text-area:focus {
  outline: none;
  border-color: rgba(10, 132, 198, 0.6);
  box-shadow: 0 0 0 4px rgba(10, 132, 198, 0.12);
}

.text-area {
  min-height: 168px;
  resize: vertical;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.button-primary:hover {
  opacity: 0.94;
}

.button-primary:active {
  transform: translateY(1px);
}

.contact-note,
.form-note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #edf8f2;
  color: #166534;
}

.form-status.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.site-footer {
  margin-top: 1rem;
  background: #031f31;
  color: #fff;
  padding: 3.5rem 0 2.2rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.site-footer h3 {
  margin: 0;
  color: #bce3fb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer .footer-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.site-footer .footer-links a,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.site-footer .footer-links a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.68);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  animation: pageReveal 0.6s ease forwards;
}

[data-reveal="2"] {
  animation-delay: 0.08s;
}

[data-reveal="3"] {
  animation-delay: 0.16s;
}

[data-reveal="4"] {
  animation-delay: 0.24s;
}

@keyframes pageReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .page-hero-grid,
  .page-grid.columns-2,
  .page-grid.columns-3,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-menu {
    position: fixed;
    top: 72px;
    right: 0;
    width: min(88vw, 300px);
    height: calc(100vh - 72px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #032b43;
    transform: translateX(100%);
    transition: transform 0.24s ease;
    z-index: 45;
  }

  .site-menu.is-open {
    transform: translateX(0);
  }

  .site-menu .site-button-link {
    width: 100%;
  }

  .page-hero {
    padding-top: 4.25rem;
    padding-bottom: 3.8rem;
  }

  .page-main {
    padding-top: 3.25rem;
    padding-bottom: 4rem;
  }

  .policy-shell,
  .form-shell,
  .section-card {
    padding: 1.35rem;
  }

  .site-shell {
    width: min(100% - 1.2rem, 1120px);
  }
}
