:root {
  --page: #f8fafc;
  --bg: #ffffff;
  --card: #f4f6fb;
  --border: #e2e8f0;
  --text: #0b1220;
  --muted: #4a5568;
  --muted-2: #6b7280;
  --accent: #c9a227;
  --accent-strong: #b38711;
  --primary: #0a1f44;
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-subtle: 0 6px 16px rgba(15, 23, 42, 0.06);
  --radius: 12px;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

main {
  padding-bottom: 90px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}

a:hover {
  color: var(--accent-strong);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  z-index: 30;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1320px;
  margin: 0 auto;
  gap: 12px;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--primary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  padding: 6px 0;
}

.nav-link.active {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  background: #111827;
  color: #f9fafb;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-subtle);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 50;
}

.top-banner {
  background: #0f172a;
  color: #f9fafb;
  text-align: center;
  padding: 10px 14px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #e2e8f0;
}

.section {
  padding: 64px 0;
}

.hero-cover {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: opacity 0.5s ease;
  animation: heroZoom 12s ease-out forwards;
}

.hero-video video.fading {
  opacity: 0.55;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.45) 0%, rgba(255, 255, 255, 0.12) 100%);
  pointer-events: none;
}

.hero-cover-content {
  position: relative;
  max-width: 1040px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}

.section-header {
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: #0f172a;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: #374151;
  line-height: 1.6;
  max-width: 960px;
}

p {
  margin: 0 0 12px;
  color: #1f2937;
}

small {
  color: var(--muted-2);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.hero-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.hero-sub {
  font-size: 16px;
  color: #1f2937;
  margin: 10px 0 4px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.16);
  color: #1f2937;
  font-weight: 700;
  border: 1px solid #e2e8f0;
}

.checklist {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1f2937;
  font-size: 14px;
}

.check-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 3px;
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.card h3 {
  margin-bottom: 8px;
}

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

.grid-asym {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(260px, 1.05fr) minmax(280px, 1.35fr);
  align-items: center;
}

.grid-masonry {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-subtle);
}

.stat-label {
  font-size: 14px;
  color: #4b5563;
}

.stat-value {
  font-size: 32px;
  color: #0f172a;
  font-family: var(--font-display);
  line-height: 1.1;
}

.stat-detail {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  background: #fff;
  min-height: 360px;
  aspect-ratio: 5 / 4;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(12, 18, 32, 0.15) 100%);
  pointer-events: none;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #0f172a;
  font-weight: 700;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
}

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

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

.btn-ghost {
  background: #fff;
  color: #374151;
  border-color: var(--border);
}

.meta {
  color: #6b7280;
  font-size: 14px;
}

.list {
  padding-left: 18px;
  margin: 8px 0 0;
  color: #d9deea;
}

.list li {
  margin-bottom: 8px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-subtle);
}

.testimonial blockquote {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
}

.testimonial figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: #1f2937;
  font-weight: 600;
}

.testimonial figcaption span {
  color: #6b7280;
  font-weight: 500;
}

.cta-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: #fff7e0;
  border: 1px solid #f2e2b7;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.cta-banner p {
  color: #374151;
}

.footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 32px 0 40px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer .brand {
  font-size: 24px;
}

.footer a {
  color: #1f2937;
}

.footer a:hover {
  color: var(--accent-strong);
}

.footer .meta {
  color: var(--muted-2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: #0f172a;
  font-size: 14px;
  font-family: var(--font-sans);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input[type="file"] {
  padding: 6px 0;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid #d5aa2e;
  outline-offset: 2px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #1f2937;
  font-weight: 600;
}

.form-helper {
  font-size: 12px;
  color: var(--muted-2);
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.12);
  color: #a17700;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.meta-grid {
  display: grid;
  gap: 12px;
}

.press-links a {
  display: block;
  color: #b38711;
  margin-bottom: 8px;
}

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

.alert {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #b38711;
  padding: 12px 14px;
  border-radius: 10px;
}

.meta-compact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse-accent {
  position: relative;
}

.pulse-accent::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(10, 31, 68, 0.1), transparent 35%);
  z-index: -1;
  filter: blur(10px);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

.photo-caption {
  position: absolute;
  inset: auto 10px 10px 10px;
  background: rgba(15, 23, 42, 0.7);
  color: #f9fafb;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 31, 68, 0.08);
  color: #0f172a;
  font-weight: 700;
  border: 1px solid var(--border);
}

.notice {
  font-size: 13px;
  color: #4b5563;
  margin-top: 10px;
}

.footer-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 12px;
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.logo-placeholder {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  background: #fff;
  color: #4b5563;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.steps-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow-subtle);
}

.step-label {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.step-text {
  font-size: 13px;
  color: #4b5563;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

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

@media (max-width: 700px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
  }

  .section {
    padding: 52px 0;
  }
}
