/* ─────────────────────────────────────────
   VAULTA AGENCY — style.css
   Reference: augen.pro
───────────────────────────────────────── */

:root {
  --white:      #FFFFFF;
  --grey-light: #ECEAE7;
  --off-white:  #F4F2EE;
  --off-black:  #111110;
  --darkest:    #0A0A09;
  --blue:       #1B3BFF;

  --text-dark:       #111110;
  --text-muted:      rgba(17,17,16,0.52);
  --text-dim:        rgba(17,17,16,0.32);
  --text-light:      #F4F2EE;
  --text-light-muted: rgba(244,242,238,0.45);
  --text-light-dim:   rgba(244,242,238,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { display: block; max-width: 100%; }

.bg-white      { background: var(--white); }
.bg-grey-light { background: var(--grey-light); }
.bg-off-white  { background: var(--off-white); }
.bg-off-black  { background: var(--off-black); }
.bg-darkest    { background: var(--darkest); }
.bg-blue       { background: var(--blue); }

.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

.display-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.nav-logo-img {
  position: absolute;
  left: 40px;
  pointer-events: all;
}
.nav-logo-img img {
  height: 40px;
  display: block;
  filter: brightness(0);
  transition: filter 0.3s;
}
.nav-logo-img img.logo-light {
  filter: brightness(0) invert(1);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10,10,9,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 5px;
  pointer-events: all;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  transition: opacity 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: opacity, transform, filter;
}
.nav-pill.pill-hidden {
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  filter: blur(10px);
  pointer-events: none;
}
.nav-pill a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-pill a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 18px !important;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: #fff;
  color: var(--off-black) !important;
  border-color: #fff;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 740px;
  padding-top: 56px;
  overflow: clip;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 60% 55% at 50% 40%, #d4d4d4 0%, transparent 68%),
    radial-gradient(ellipse 90% 50% at 50% 100%, #c8c8c8 0%, transparent 60%),
    linear-gradient(180deg, #f0f0f0 0%, #ffffff 55%, #ebebeb 100%);
}

.hero-meta {
  position: relative;
  z-index: 2;
  padding: 48px 56px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-logo {
  height: 36px;
  /* logo has cream text — darken it for white hero background */
  filter: brightness(0);
}

.hero-tagline {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(17,17,16,0.15);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.hero-pill:hover,
.hero-pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.hero-cube-canvas {
  position: absolute;
  top: 402px;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: block;
}

.cube-shadow {
  position: absolute;
  top: calc(402px + 195px);
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 70px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 40%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero-dot {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
}

.dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}


/* ══════════════════════════════
   OVERVIEW
══════════════════════════════ */
.overview {
  padding: 0 0 40px;
  min-height: 240px;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
}

.overview::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 1;
}

.overview-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.overview-left .section-label {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  text-transform: none;
}

.overview-right {
  padding-top: 64px;
}

.overview-copy {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 20px;
}

.copy-swap {
  position: relative;
  display: inline;
}

/* ══════════════════════════════
   ARROW LINK
══════════════════════════════ */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}
.arrow-link:hover { gap: 16px; }
.arrow-link .arrow-icon { display: flex; align-items: center; flex-shrink: 0; }

.arrow-link.blue      { color: var(--blue); }
.arrow-link.light     { color: rgba(255,255,255,0.4); }
.arrow-link.light:hover { color: rgba(255,255,255,0.85); }
.arrow-link.off-white { color: rgba(255,255,255,0.82); }
.arrow-link.off-white:hover { color: #fff; }

/* ══════════════════════════════
   DARK HIGHLIGHTS
══════════════════════════════ */
.highlights { padding: 60px 0 100px; }

.highlights-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.highlights-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.highlights-brand {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.highlights-dot {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
}

.highlights-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlights-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}

.highlights-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 36px;
  background: var(--darkest);
}

.highlight-label {
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.highlight-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}

.highlights-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════
   DARK GRID
══════════════════════════════ */
.grid-info { padding: 0; }

.grid-info-container { padding: 0 40px; }

.grid-row {
  display: grid;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-row { grid-template-columns: repeat(3, 1fr); gap: 40px; }

.grid-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 8px;
}

.grid-value {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.bottom-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.badge-text {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════
   SERVICES SHOWCASE
══════════════════════════════ */
.showcase { padding: 100px 0; }

.showcase-container {}

.showcase-head { margin-bottom: 24px; }

.icon-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
}

.showcase-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 56px;
}

.showcase-title-inner {
  text-align: center;
}

.showcase-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.showcase-image-wrap {
  width: 72%;
  max-width: 760px;
}

.showcase-image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: #0c0e1a;
  border-radius: 16px;
  overflow: hidden;
}

.svc-visual {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.svc-visual.active { display: flex; }

@keyframes svc-wave {
  0%, 100% { height: 6px; }
  50% { height: 28px; }
}
.wave-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 36px;
}
.wave-bar {
  width: 4px;
  height: 6px;
  background: #5b63ff;
  border-radius: 2px;
  animation: svc-wave 1.1s ease-in-out infinite;
}
.wave-bar:nth-child(1) { animation-delay: 0.0s; }
.wave-bar:nth-child(2) { animation-delay: 0.12s; }
.wave-bar:nth-child(3) { animation-delay: 0.24s; }
.wave-bar:nth-child(4) { animation-delay: 0.36s; }
.wave-bar:nth-child(5) { animation-delay: 0.18s; }
.wave-bar:nth-child(6) { animation-delay: 0.06s; }
.wave-bar:nth-child(7) { animation-delay: 0.30s; }

@keyframes svc-blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.typing-cursor { animation: svc-blink 1s step-end infinite; }

/* Replace placeholder with actual image */
.showcase-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.showcase-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.showcase-copy {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 400px;
}

.showcase-links { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

.links-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--blue);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--blue);
  transition: background 0.2s, color 0.2s;
}
.pill:hover { background: var(--blue); color: #fff; }
.pill-filled,
.pill.active { background: var(--blue); color: #fff; }
.pill-filled:hover,
.pill.active:hover { background: transparent; color: var(--blue); }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { padding: 110px 0; }

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 36px;
}

.about-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.about-subtitle {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}

.about-copy h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.about-copy p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light-muted);
  margin-bottom: 14px;
}

.about-sub-copy {
  font-size: 11px;
  color: var(--text-light-dim);
  margin-top: 36px;
  letter-spacing: 0.04em;
}
.about-sub-copy span { margin-right: 4px; }

.divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: 56px;
}

/* ══════════════════════════════
   FEATURED
══════════════════════════════ */
.featured { padding: 130px 0; }

.featured-content {
  display: flex;
  align-items: flex-start;
  gap: 88px;
}

.featured-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  flex-shrink: 0;
}

.featured .display-title { color: #fff; margin-bottom: 24px; }

.featured-copy {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.52);
  margin-bottom: 52px;
  max-width: 360px;
}

/* ══════════════════════════════
   TWO BLOCKS
══════════════════════════════ */
.two-blocks { padding: 110px 0; }

.two-blocks-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.block-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  color: rgba(17,17,16,0.07);
  line-height: 1;
  margin-bottom: 20px;
}

.block-title {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.block-copy {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { padding: 0; }

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: 1fr auto;
  min-height: 200px;
  padding-top: 40px;
  padding-bottom: 32px;
  gap: 0 60px;
}

.footer-wordmark {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.footer-wordmark img {
  height: 48px;
  opacity: 0.9;
  margin-left: -8px;
}

.footer-links-group {
  align-self: start;
}
.footer-links-group:nth-of-type(1) { grid-column: 2; grid-row: 1; }
.footer-links-group:nth-of-type(2) { grid-column: 3; grid-row: 1; }

.footer-links-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-light-dim);
  margin-bottom: 12px;
}
.footer-links-label span {
  opacity: 0.55;
  margin-right: 4px;
}

.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 6px; }
.footer-links-list a {
  font-size: 13px;
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-links-list a:hover { color: var(--text-light); }

.ftr-arrow {
  display: flex;
  align-items: center;
  opacity: 0.4;
}

.footer-legal {
  grid-column: 1 / 4;
  grid-row: 2;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2px;
}

.footer-legal-list {
  list-style: none;
  display: flex;
  gap: 24px;
}
.footer-legal-list a {
  font-size: 11px;
  color: var(--text-light-dim);
  transition: color 0.2s;
}
.footer-legal-list a:hover { color: var(--text-light-muted); }

.footer-location {
  font-size: 11px;
  color: var(--text-light-dim);
}

/* ══════════════════════════════
   STICKY DOT
══════════════════════════════ */
.sticky-dot {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 200;
}

.sticky-dot-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s;
}
.sticky-dot-inner:hover { transform: scale(1.1); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .nav-inner { padding: 0 36px; }
  .hero-meta { padding: 36px 36px 0; }
  .highlights-top,
  .highlights-rows,
  .grid-info-container { padding: 0 36px; }
  .showcase-title { font-size: clamp(60px, 9vw, 120px); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .highlights-top,
  .highlights-rows,
  .grid-info-container { padding: 0 24px; }

  .nav-center { display: none; }

  .hero-image-wrap { width: 80%; }

  .overview-container { grid-template-columns: 1fr; gap: 32px; }

  .highlight-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .highlight-label { display: none; }

  .top-row, .bottom-row { grid-template-columns: 1fr 1fr; }

  .showcase-title-wrap { min-height: 240px; }
  .showcase-image-wrap { width: 55%; }
  .showcase-bottom { grid-template-columns: 1fr; gap: 32px; }

  .about-container, .two-blocks-container { grid-template-columns: 1fr; gap: 64px; }

  .featured-content { flex-direction: column; gap: 24px; }
  .featured-number { font-size: 48px; }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px 40px;
    min-height: unset;
  }
  .footer-wordmark { grid-column: 1 / 3; grid-row: 1; }
  .footer-links-group:nth-of-type(1) { grid-column: 1; grid-row: 2; }
  .footer-links-group:nth-of-type(2) { grid-column: 2; grid-row: 2; }
  .footer-icon { grid-column: 1; grid-row: 3; }
  .footer-legal { grid-column: 1 / 3; grid-row: 4; flex-direction: column; align-items: flex-start; gap: 12px; }
}
