:root {
  --slate-blue: #476A8C;
  --chartreuse: #CCFF00;
  --deep-navy: #1E293B;
  --cool-off-white: #F9FAFB;
  --mid-gray: #D1D5DB;
  --ochre: #B8884A;
  --ochre-light: #C9A06A;
  --ochre-dark: #9A7038;
  --ochre-bg: #F5EDE0;
  --ochre-bg-alt: #EDE0CC;
  --ochre-muted: #D4B98A;
  --link-blue: #2E6B9C;
  --link-blue-dark: #1E4F75;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  color: var(--deep-navy);
  background: var(--cool-off-white);
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--deep-navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
}

.nav-logo {
  font-size: 1.65rem; font-weight: 700; color: #fff;
  letter-spacing: -0.02em; text-decoration: none;
  display: flex; align-items: flex-start; gap: 0;
}

.nav-logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--chartreuse); display: inline-block;
  margin-left: 2px; margin-top: 2px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.01em;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: #fff;
  border-bottom-color: var(--chartreuse);
}

.nav-cta {
  background: var(--chartreuse) !important;
  color: var(--deep-navy) !important;
  padding: 10px 24px !important; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.9rem !important;
  border-bottom: none !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(204,255,0,0.3);
  border-bottom: none !important;
}

.hero {
  background: var(--deep-navy);
  padding: 160px 48px 80px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(71,106,140,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(204,255,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  color: #fff; line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 20px; max-width: 700px;
}

.hero h1 .accent { color: var(--chartreuse); }

.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.6);
  line-height: 1.65; max-width: 600px;
}

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.section-label--ochre { color: var(--ochre); }
.section-label--chartreuse { color: var(--chartreuse); }

.section-ochre {
  background: var(--ochre-bg);
  position: relative;
}

.section-ochre-alt {
  background: var(--ochre-bg-alt);
}

.section-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 96px 48px;
}

.section-title {
  font-size: 2rem; font-weight: 700; color: var(--deep-navy);
  margin-bottom: 48px; letter-spacing: -0.02em;
}

.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}

.faq-item {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(184,136,74,0.18);
  border-radius: 10px; padding: 32px;
}

.faq-item h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--deep-navy);
  margin-bottom: 12px; line-height: 1.4;
}

.faq-item p {
  font-size: 0.95rem; line-height: 1.65; color: rgba(30,41,59,0.75);
}

.cta-section {
  background: var(--ochre-bg);
  padding: 80px 48px; text-align: center;
}

.cta-inner { max-width: 600px; margin: 0 auto; }

.cta-section h2 {
  font-size: 2rem; font-weight: 700; color: var(--deep-navy);
  margin-bottom: 16px; letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.1rem; color: rgba(30,41,59,0.7);
  line-height: 1.6; margin-bottom: 36px;
}

.cta-btn {
  display: inline-block;
  background: var(--chartreuse); color: var(--deep-navy);
  padding: 16px 40px; border-radius: 6px;
  font-size: 1.05rem; font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(204,255,0,0.25);
}

.ochre-link {
  color: var(--deep-navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--link-blue);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.ochre-link:hover {
  border-bottom-color: var(--deep-navy);
}

.ochre-link--light {
  border-bottom-width: 1.5px;
}

footer {
  background: var(--deep-navy);
  position: relative; overflow: hidden;
}

.footer-top {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 48px 40px;
  position: relative; z-index: 2;
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-left {
  display: flex; align-items: flex-start; gap: 20px;
  max-width: 480px;
}

.footer-brand-left p {
  font-size: 0.85rem; line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer-brand-right {
  display: flex; align-items: flex-start; gap: 20px;
  flex-shrink: 0;
}

.footer-contact-info {
  text-align: right;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 720px;
}

.footer-logo {
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0;
}

.footer-logo-box {
  width: 44px; height: 44px; border-radius: 8px;
  border: 1.5px solid rgba(204,255,0,0.5);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.footer-logo-box span {
  font-size: 1.15rem; font-weight: 700; color: #fff;
  letter-spacing: 0.02em;
}

.footer-logo-box .logo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--chartreuse);
  position: absolute; top: 4px; right: 4px;
}

.footer-email {
  font-size: 0.88rem; color: #fff; font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid var(--chartreuse);
  padding-bottom: 3px;
  display: block;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--chartreuse); }

.footer-phone {
  display: block;
  font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 400;
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s;
}

.footer-phone:hover { color: #fff; }

.footer-col h4 {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 0.88rem;
  margin-bottom: 10px; transition: color 0.2s, border-color 0.2s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  width: fit-content;
}

.footer-col a:hover {
  color: #fff;
  border-bottom-color: var(--chartreuse);
}

.footer-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-cta-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-col a.footer-cta-btn {
  border-bottom-color: rgba(255,255,255,0.35);
}

.footer-col a.footer-cta-btn:hover {
  border-bottom-color: #fff;
}

.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.footer-social a:hover { background: rgba(255,255,255,0.12); }

.footer-social svg { fill: rgba(255,255,255,0.5); width: 16px; height: 16px; }

.footer-divider {
  max-width: 1280px; margin: 0 auto;
  border: none; border-top: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 2;
}

.footer-watermark {
  position: relative; z-index: 1;
  width: 100%; overflow: hidden;
  padding: 0;
  line-height: 0;
}

.footer-watermark-text {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.055);
  white-space: nowrap;
  font-size: 18vw;
  line-height: 0.85;
  letter-spacing: -0.03em;
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 0 0;
  user-select: none;
}

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 48px 28px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}

.footer-bottom span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.6);
  border-bottom-color: var(--chartreuse);
}

.skip-link {
  position: absolute; top: -100%; left: 0;
  padding: 12px 24px;
  background: var(--chartreuse); color: var(--deep-navy);
  font-weight: 600; text-decoration: none;
  z-index: 200;
}
.skip-link:focus { top: 0; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .hero { padding: 140px 24px 60px; }
  .section-inner { padding: 72px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { padding: 48px 24px 32px; }
  .footer-brand-row { flex-direction: column; gap: 28px; }
  .footer-brand-right { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-contact-info { text-align: left; }
  .footer-columns { grid-template-columns: repeat(3, auto); gap: 40px; }
  .footer-watermark-text { font-size: 22vw; }
}

@media (max-width: 600px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: none; }
  .nav-links .nav-cta { margin-top: 8px; text-align: center; }
  .hero { padding: 120px 20px 60px; }
  .hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
  .section-title { font-size: 1.6rem; }
  .cta-section { padding: 60px 24px; }
  .cta-btn { display: block; text-align: center; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-brand-left { max-width: none; }
  .footer-watermark-text { font-size: 28vw; }
}

.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
