/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:          #0C1322;
  --navy-mid:      #131D35;
  --navy-light:    #1C2A4A;
  --navy-xlight:   #F0F4FF;
  --yellow:        #F5BE00;
  --yellow-bright: #FACC15;
  --yellow-dark:   #B8900A;
  --yellow-light:  #FEF9C3;
  --white:         #FFFFFF;
  --text:          #1E293B;
  --text-muted:    #64748B;
  --border:        #CBD5E1;
  --border-light:  #E2E8F0;
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.2s ease;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-display:  'Space Grotesk', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Utility ───────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--yellow); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--yellow-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,190,0,0.4);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
}

.btn--nav {
  background: var(--yellow);
  color: var(--navy);
  padding: 9px 20px;
  font-size: 0.85rem;
}
.btn--nav:hover {
  background: var(--yellow-bright);
  box-shadow: 0 4px 14px rgba(245,190,0,0.35);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}
.section-eyebrow--on-dark {
  color: var(--yellow);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-header--on-dark h2 { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header--on-dark .section-sub { color: rgba(255,255,255,0.7); }

/* ─── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 1px 24px rgba(12,19,34,0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--navy); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border-light);
  background: var(--white);
}
.nav__mobile a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.nav__mobile a:last-child { border-bottom: none; color: var(--navy); font-weight: 600; }
.nav__mobile a:hover { color: var(--navy); }
.nav__mobile.open { display: flex; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(145deg, #0C1322 0%, #131D35 55%, #1C2A4A 100%);
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* yellow sun glow */
.hero::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(245,190,0,0.28) 0%, rgba(245,190,0,0.04) 55%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__headline .text-accent {
  color: var(--yellow);
  text-shadow: 0 0 48px rgba(245,190,0,0.45);
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__social-proof span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.hero__tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ─── Services ──────────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(245,190,0,0.14);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--yellow-light);
  border: 1.5px solid rgba(245,190,0,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow-dark);
  font-size: 0.8rem;
}

/* ─── How It Works ──────────────────────────────────────────── */
.how-it-works {
  padding: 120px 0;
  background: var(--navy-xlight);
}

.steps {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.step__number {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--yellow);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(245,190,0,0.35);
  position: relative;
  z-index: 1;
}

.step__connector {
  flex: 0 0 1px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), rgba(245,190,0,0.15));
  margin-top: 21px;
  align-self: flex-start;
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step__content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Why Canary ────────────────────────────────────────────── */
.why-canary {
  padding: 120px 0;
  background: linear-gradient(145deg, #0C1322 0%, #131D35 55%, #1C2A4A 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,190,0,0.3);
  transform: translateY(-2px);
}

.why-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ─── About ─────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.about__image-wrap {
  position: sticky;
  top: 96px;
}

.about__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 3px solid var(--yellow);
  display: block;
  box-shadow: 0 12px 40px rgba(12,19,34,0.15);
}

.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy-xlight);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-light);
}

.about__content .section-eyebrow { display: block; margin-bottom: 10px; }

.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

.about__content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about__lorem { opacity: 0.45; font-style: italic; }

.about__creds {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1.5px solid var(--border-light);
}

.cred__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.cred__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: linear-gradient(145deg, #0C1322 0%, #131D35 55%, #1C2A4A 100%);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245,190,0,0.2) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact__content .section-eyebrow { display: block; margin-bottom: 10px; }

.contact__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.contact__content h2 .text-accent { color: var(--yellow); }

.contact__content > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.contact__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-decoration: none;
  transition: all var(--transition);
}
.contact__option:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(245,190,0,0.4);
  transform: translateX(4px);
}

.contact__option-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.contact__option-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.contact__option-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.contact__canary {
  display: flex;
  align-items: center;
  justify-content: center;
}

.canary-glyph {
  font-size: 14rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  padding: 28px 0;
  border-top: 1.5px solid var(--border-light);
  background: var(--white);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__left img {
  height: 28px;
  width: auto;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__right a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__right a:hover { color: var(--navy); }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .services__grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__image-wrap { position: static; max-width: 260px; }
  .contact__inner { grid-template-columns: 1fr; }
  .canary-glyph { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 360px; }
  .step__connector { display: none; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: 100svh; padding: 100px 0 60px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .about__creds { flex-direction: column; gap: 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__right { flex-direction: column; gap: 8px; }
}
