@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500&family=Archivo+Black&display=swap');

:root {
  --navy: #001123;
  --navy-card: #112342;
  --navy-deep: #00091a;
  --cream: #fffaf3;
  --cream-70: rgba(255, 250, 243, 0.7);
  --cream-45: rgba(255, 250, 243, 0.45);
  --cream-22: rgba(255, 250, 243, 0.22);
  --cream-12: rgba(255, 250, 243, 0.12);
  --cream-10: rgba(255, 250, 243, 0.1);
  --gold: #eac778;
  --gold-45: rgba(234, 199, 120, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
}
body {
  background-image: url('assets/bg.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

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

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

h1, h2, h3, p { margin: 0; }

.accent { color: var(--gold); }
.headline-muted { color: var(--cream-45); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 28px;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid var(--cream-22); }
.packages-cta { display: flex; justify-content: center; width: 100%; }
.btn-quote { border-radius: 12px; min-width: 445px; max-width: 100%; }
.btn-pill-sm { padding: 13px 24px; font-size: 15px; }

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 40px;
  width: 100%;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; object-fit: cover; }
.logo-full { height: 38px; width: auto; object-fit: contain; display: block; }
.logo-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--cream);
  white-space: nowrap;
}
.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: 15px;
  color: var(--cream-70);
  margin-right: 28px;
}

/* Hero */
.hero {
  padding: 72px 40px 96px;
  width: 100%;
}
.hero-grid {
  display: flex;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  letter-spacing: 2.52px;
  white-space: nowrap;
}
.eyebrow .accent { color: var(--gold); }
.eyebrow .dot { color: var(--cream-45); }
.headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.45;
  letter-spacing: -0.72px;
  color: var(--cream);
}
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 1px 10px 3px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  letter-spacing: -0.72px;
  line-height: 1.18;
}
.pill-outline { border: 1px solid var(--cream-22); color: var(--cream-70); }
.pill-fill { background: var(--gold); color: var(--navy); }
/* Speech-bubble headline ("We believe in / The Power / of People") */
.believe-headline {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -1px;
  color: var(--cream);
}
.believe-line { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 24px 12px;
  border-radius: 26px;
  white-space: nowrap;
}
.bubble::after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 30px;
  height: 22px;
  background-color: inherit;
}
/* Left-corner tail: vertical outer edge on the left, point hanging down-left */
.bubble-dark::after,
.bubble-soft::after {
  left: 26px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
/* Right-corner tail: vertical outer edge on the right, point hanging down-right */
.bubble-gold::after {
  right: 26px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.bubble-dark { background-color: var(--navy-card); color: var(--cream); }
.bubble-soft { background-color: var(--cream-10); color: var(--cream); }
.bubble-gold { background-color: var(--gold); color: var(--navy); }

.lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--cream-70);
  max-width: 520px;
}
.ctas { display: flex; gap: 14px; align-items: center; }

.hero-mockup-wrap { flex: 1; min-width: 0; }
.browser-mockup {
  background: var(--navy-card);
  border: 1px solid var(--cream-12);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--cream-12);
}
.ellipse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-22);
  display: inline-block;
}
.browser-url {
  font-size: 12px;
  color: var(--cream-45);
  margin-left: 4px;
}
.image-slot { background: var(--navy-card); width: 100%; }
.hero-image-slot { height: 385px; }

/* Projects */
.projects {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 96px 40px 100px;
  width: 100%;
}
.projects-head { display: flex; gap: 24px; align-items: flex-start; width: 100%; }
.title-block { display: flex; flex-direction: column; gap: 6px; white-space: nowrap; }
.kicker { font-size: 16px; color: var(--cream-70); }
.kicker.centered { color: var(--gold); letter-spacing: 2.52px; font-size: 14px; }
.big-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 0.92;
  letter-spacing: -1.92px;
  color: var(--cream);
}
.hr-spacer { flex: 1; height: 1px; align-self: center; }
.mark-note { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.mark-small { width: 44px; height: 44px; object-fit: cover; opacity: 0.9; }
.note { font-size: 14px; color: var(--cream-45); line-height: 1.5; text-align: right; max-width: 240px; }

/* Horizontal scroller for project cards */
.project-scroller {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.project-scroller::-webkit-scrollbar { display: none; }
/* click-and-drag: follow the cursor 1:1 (no snap/smooth while dragging) */
.project-scroller.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.project-scroller.dragging a,
.project-scroller.dragging .view-case { pointer-events: none; }
.project-scroller img { -webkit-user-drag: none; user-select: none; }
.project-card {
  flex: 0 0 clamp(300px, 46%, 560px);
  scroll-snap-align: start;
  background: var(--navy-card);
  border: 1px solid var(--cream-12);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.project-card--aruvida { background: #003524; }
.project-image-slot { height: 411px; background-size: cover; background-position: center; }

/* Scroller navigation buttons */
.scroller-nav { display: flex; gap: 12px; }
.scroll-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--cream-10);
  border: 1px solid var(--cream-22);
  color: var(--cream);
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.scroll-btn:hover { background: var(--cream-22); }
.scroll-btn:disabled { opacity: 0.35; cursor: default; }
.caption {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 28px;
}
.title-desc { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.title-desc h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.32px;
  color: var(--cream);
}
.title-desc p { font-size: 15px; color: var(--cream-70); }
.view-case {
  background: var(--cream-10);
  border: 1px solid var(--cream-22);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  white-space: nowrap;
}

/* Manifesto */
.manifesto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 40px 96px;
  width: 100%;
  overflow: hidden;
}
.manifesto-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 50px;
  letter-spacing: -0.75px;
  line-height: 1.1;
  max-width: 800px;
  color: var(--cream);
}
.manifesto-copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--cream-70);
  max-width: 600px;
}
.mark-watermark {
  position: absolute;
  width: 342px;
  height: 342px;
  object-fit: cover;
  opacity: 0.05;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

/* Packages */
.packages {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 40px 40px 96px;
  width: 100%;
}
.packages-head { display: flex; flex-direction: column; gap: 6px; }
.packages-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 78px;
  line-height: 0.94;
  letter-spacing: -1.56px;
  max-width: 900px;
  color: var(--cream);
}
.tier-grid { display: flex; gap: 22px; width: 100%; }
.tier-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--navy-card);
  border: 1px solid var(--cream-12);
  border-radius: 28px;
  padding: 28px;
  min-width: 0;
}
.tier-featured { border-color: var(--gold-45); }
.tier-title-row { display: flex; align-items: center; gap: 10px; }
.tier-title-row h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.34px;
  color: var(--cream);
}
.tier-mark { width: 26px; height: 26px; object-fit: cover; }
.tier-sub { font-size: 15px; color: var(--cream-70); }
.features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.features li { display: flex; gap: 10px; align-items: flex-start; }
.check { color: var(--gold); }
.features li span:last-child { color: var(--cream); line-height: 1.4; }
.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--gold);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
}
.cta-main { color: var(--navy); font-size: 16px; }
.cta-sub { color: rgba(0, 17, 35, 0.72); font-size: 12.5px; }

/* Proposal banner */
.proposal-banner { padding: 0 40px 64px; width: 100%; }
.banner-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--navy-deep);
  border: 1px solid var(--cream-12);
  border-radius: 28px;
  padding: 48px 44px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-mark { width: 260px; height: 260px; object-fit: cover; opacity: 0.07; flex-shrink: 0; }
.banner-copy { flex: 1; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.banner-copy h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 38px;
  letter-spacing: -0.57px;
  line-height: 1.02;
  max-width: 440px;
  color: var(--cream);
}
.banner-copy p { font-size: 16px; line-height: 1.55; color: var(--cream-70); max-width: 440px; }
.accent-row { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.big-mark {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 56px;
}
.big-mark.muted { color: var(--cream-45); }

/* Awards */
.awards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px;
  border-top: 1px solid var(--cream-12);
  width: 100%;
  flex-wrap: wrap;
}
.award { display: flex; align-items: center; gap: 10px; }
.star { color: var(--gold); font-size: 15px; }
.award span:last-child { font-size: 14px; color: var(--cream-70); }

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 72px 40px 40px;
  border-top: 1px solid var(--cream-12);
  width: 100%;
}
.footer-top { display: flex; gap: 32px; align-items: flex-start; width: 100%; flex-wrap: wrap; }
.brand-block { display: flex; flex-direction: column; gap: 16px; }
.brand-block .logo-mark { width: 34px; height: 34px; }
.brand-block .logo-text { font-size: 19px; letter-spacing: -0.19px; }
.footer-tagline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.26px;
  line-height: 1.05;
  max-width: 380px;
  color: var(--cream);
}
.footer-columns { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.col-head { font-size: 12px; color: var(--cream-45); letter-spacing: 2.16px; }
.links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: var(--cream-70); }
.fine-print {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-12);
  width: 100%;
}
.fine-print p { font-size: 12px; color: var(--cream-45); letter-spacing: 0.48px; white-space: nowrap; }

/* Password gate */
html.locked, html.locked body { overflow: hidden; height: 100%; }
html.locked body > *:not(.gate) { display: none !important; }
.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 24px;
}
.gate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--navy-card);
  border: 1px solid var(--cream-12);
  border-radius: 28px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
}
.gate-mark { width: 52px; height: 52px; object-fit: cover; }
.gate-eyebrow { font-size: 13px; letter-spacing: 2.4px; color: var(--cream-45); }
.gate-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--cream);
}
.gate-sub { font-size: 15px; color: var(--cream-70); }
.gate-form { display: flex; gap: 10px; width: 100%; margin-top: 8px; }
.gate-form.shake { animation: gate-shake 0.4s ease; }
@keyframes gate-shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); }
  40%, 60% { transform: translateX(6px); }
}
.gate-input {
  flex: 1;
  min-width: 0;
  background: var(--navy);
  border: 1px solid var(--cream-22);
  border-radius: 999px;
  padding: 13px 20px;
  color: var(--cream);
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  outline: none;
}
.gate-input::placeholder { color: var(--cream-45); }
.gate-input:focus { border-color: var(--gold); }
.gate-form .btn { padding: 13px 24px; font-size: 15px; }
.gate-error {
  font-size: 13.5px;
  color: #e89090;
  opacity: 0;
  transition: opacity 0.15s ease;
  min-height: 18px;
}
.gate-error.show { opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .projects-head, .project-grid, .tier-grid, .banner-card, .footer-top {
    flex-direction: column;
  }
  .hr-spacer { display: none; }
  .mark-note { align-items: flex-start; }
  .note { text-align: left; }
  .big-title { font-size: 64px; }
  .packages-title { font-size: 48px; }
  .manifesto-title { font-size: 36px; }
  .headline, .pill { font-size: 36px; }
  .believe-headline { font-size: 40px; }
  .nav { display: none; }
}
