/* Veeshu Training & Placements — static styles */
:root {
  --navy:   #0B1F3A;
  --navy-2: #122A4F;
  --ink:    #0F172A;
  --slate:  #475569;
  --slate-2:#64748B;
  --line:   #E6E8EE;
  --bg:     #FAFAF7;
  --card:   #FFFFFF;
  --accent: #1E5BD8;
  --accent-soft: rgba(30, 91, 216, 0.10);
  --green:  #0E9F6E;
  --green-soft: #E6F6EF;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px; line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.serif { font-family: 'Instrument Serif', ui-serif, Georgia, serif; font-weight: 400; }
.italic { font-style: italic; }
.accent { color: var(--accent); }
.light { color: #9FBDFF; }
.muted { color: var(--slate); line-height: 1.6; font-size: 17px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.section { padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(64px, 9vw, 120px); }

.md-only { display: none; }
@media (min-width: 768px) { .md-only { display: inline-block; } br.md-only { display: inline; } }

/* ---------------- Eyebrow ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate); font-weight: 500;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); display: inline-block; }
.eyebrow-light { color: rgba(255,255,255,0.7); }
.dot-light { background: #7DA8FF !important; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; border: 1px solid transparent; cursor: pointer;
}
.btn .i { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 24px -12px rgba(11,31,58,0.45); }
.btn-primary:hover { background: #0a1a30; transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: #cdd2dc; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-1px); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}
.nav.scrolled {
  background: rgba(250,250,247,0.78);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
}
.nav-row { height: 68px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif; font-size: 18px; line-height: 1;
}
.brand-logo.small { width: 26px; height: 26px; border-radius: 7px; font-size: 16px; }
.brand-name { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.brand-name-light { color: var(--slate); font-weight: 400; }

.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 900px) { .nav-links { display: inline-flex; } }
.nav-links a {
  height: 40px; padding: 0 14px; border-radius: 999px;
  display: inline-flex; align-items: center;
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.nav-links a:hover { background: rgba(15,23,42,0.04); }

/* ---------------- Hero ---------------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-wash {
  position: absolute; inset: 0 0 auto 0; height: 520px; pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(30,91,216,0.08) 0%, rgba(30,91,216,0) 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAF7 100%);
}
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .35; mix-blend-mode: multiply;
  background-image: radial-gradient(rgba(15,23,42,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
}
.hero-inner { position: relative; padding-top: 64px; padding-bottom: 80px; }
@media (min-width: 768px) { .hero-inner { padding-top: 96px; padding-bottom: 112px; } }

.hero h1 {
  margin: 24px 0 0;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 18ch;
  text-wrap: balance;
  font-weight: 600;
}
.hero .lead { margin: 28px 0 0; font-size: 17px; max-width: 62ch; color: var(--slate); line-height: 1.6; }
@media (min-width: 768px) { .hero .lead { font-size: 18px; } }

.cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.meta-line {
  display: none; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate-2);
}
@media (min-width: 640px) { .meta-line { display: inline-flex; } }
.meta-line .tick { width: 1px; height: 12px; background: var(--line); }
.meta-light { color: rgba(255,255,255,0.65); }
.meta-light svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }

.hero-meta {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px 32px; max-width: 768px;
}
@media (min-width: 768px) {
  .hero-meta { margin-top: 80px; grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.hero-meta .k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate-2); }
.hero-meta .v { margin-top: 4px; font-size: 15px; color: var(--ink); }

/* ---------------- Trust strip ---------------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust-row {
  padding: 28px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 32px;
}
@media (min-width: 768px) { .trust-row { padding: 32px 40px; } }
.trust-item { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--ink); }
.check {
  width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--accent);
}
.check svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.tick { width: 1px; height: 12px; background: var(--line); display: inline-block; }

/* ---------------- Headings (sections) ---------------- */
.section h2 {
  margin: 16px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05; letter-spacing: -0.02em; font-weight: 600;
  text-wrap: balance;
}

/* ---------------- Generic 12-grid ---------------- */
.grid-12 { display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 40px; }
@media (min-width: 768px) {
  .grid-12 { grid-template-columns: repeat(12, minmax(0,1fr)); gap: 64px; }
  .span-5 { grid-column: span 5 / span 5; }
  .span-6 { grid-column: span 6 / span 6; }
  .span-start-7 { grid-column-start: 7; }
  .align-end { align-items: end; }
}
.gap-lg { gap: 40px; }

/* ---------------- Cards / Services ---------------- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.02), 0 12px 32px -20px rgba(15,23,42,0.18);
}

.services-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.svc {
  padding: 28px; display: flex; flex-direction: column; gap: 20px; min-height: 280px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-2px); border-color: #d8dde7; box-shadow: 0 1px 0 rgba(15,23,42,0.02), 0 24px 48px -28px rgba(15,23,42,0.28); }
.svc-head { display: flex; align-items: center; justify-content: space-between; }
.svc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-num { font-size: 12px; font-weight: 500; color: var(--slate-2); font-variant-numeric: tabular-nums; }
.svc h3 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.svc p { margin: 8px 0 0; font-size: 14.5px; color: var(--slate); line-height: 1.6; }

/* ---------------- About ---------------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 56px; } }
.about-photo {
  position: relative; overflow: hidden; border-radius: 24px;
  border: 1px solid var(--line); background: #fff;
  box-shadow: 0 1px 0 rgba(15,23,42,0.02), 0 24px 56px -28px rgba(15,23,42,0.28);
  aspect-ratio: 4 / 5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,31,58,0) 60%, rgba(11,31,58,0.18) 100%);
}
.about-badge {
  position: absolute; left: 20px; bottom: 20px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  background: rgba(255,255,255,0.92); color: var(--navy);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.about-copy h2 { font-size: clamp(30px, 3.8vw, 46px); }
.about-copy .muted { margin: 24px 0 0; max-width: 60ch; line-height: 1.65; }

.mv-grid { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .mv-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.mv-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.mv-head { display: flex; align-items: center; gap: 10px; }
.mv-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); display: inline-block; }
.mv-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; color: var(--slate-2); }
.mv-card p { margin: 12px 0 0; font-size: 14.5px; color: var(--ink); line-height: 1.6; }

.founder-note { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.founder-note .rule { width: 40px; height: 1px; background: var(--line); display: inline-block; }
.founder-note span:last-child { font-size: 14px; color: var(--slate); }
.founder-note strong { color: var(--ink); font-weight: 500; }

/* ---------------- Post a Job ---------------- */
.postjob {
  position: relative; overflow: hidden; border-radius: 28px;
  background: linear-gradient(180deg, #0B1F3A 0%, #0E2A55 100%);
  color: #fff;
}
.postjob-grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.08; }
.postjob-glow {
  position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(30,91,216,0.55), rgba(30,91,216,0));
}
.postjob-inner {
  position: relative; display: grid; grid-template-columns: 1fr; gap: 40px;
  padding: 56px 28px;
}
@media (min-width: 768px) { .postjob-inner { grid-template-columns: 7fr 5fr; padding: 80px 56px; } }

.postjob-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.02em;
  font-weight: 600; text-wrap: balance;
}
.postjob-copy p { margin: 24px 0 0; font-size: 17px; color: rgba(255,255,255,0.78); max-width: 58ch; line-height: 1.6; }

.process-card {
  border-radius: 16px; padding: 24px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .process-card { padding: 28px; } }
.process-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); }
.process-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.process-list li { display: flex; gap: 16px; }
.process-num {
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: #cfe0ff;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.process-t { font-size: 15px; font-weight: 500; }
.process-d { margin-top: 2px; font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.55; }

/* ---------------- Who we help ---------------- */
.wwh-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px; }
.wwh-lede { max-width: 28rem; font-size: 15.5px; }

.wwh-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .wwh-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.wwh-card {
  border-radius: 24px; padding: 28px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
}
@media (min-width: 768px) { .wwh-card { padding: 32px; } }
.wwh-row { display: flex; align-items: center; justify-content: space-between; }
.wwh-step { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; }
.wwh-icon { width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.wwh-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.wwh-card h3 { margin: 28px 0 0; font-size: 28px; line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
.wwh-card p { margin: 12px 0 0; font-size: 15px; line-height: 1.6; }
.chips { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { font-size: 12px; padding: 4px 10px; border-radius: 999px; }

.tone-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.tone-navy .wwh-step { color: rgba(255,255,255,0.7); }
.tone-navy p { color: rgba(255,255,255,0.7); }
.tone-navy .wwh-icon { background: rgba(255,255,255,0.08); color: #cfe0ff; border: 1px solid rgba(255,255,255,0.14); }
.tone-navy .chips li { background: rgba(255,255,255,0.08); color: #cfe0ff; border: 1px solid rgba(255,255,255,0.14); }

.tone-blue { background: var(--accent-soft); color: var(--ink); }
.tone-blue .wwh-step { color: var(--slate); }
.tone-blue p { color: var(--slate); }
.tone-blue .wwh-icon { background: #fff; color: var(--accent); border: 1px solid rgba(30,91,216,0.18); }
.tone-blue .chips li { background: #fff; color: var(--accent); border: 1px solid rgba(30,91,216,0.18); }

.tone-green { background: var(--green-soft); color: var(--ink); }
.tone-green .wwh-step { color: var(--slate); }
.tone-green p { color: var(--slate); }
.tone-green .wwh-icon { background: #fff; color: var(--green); border: 1px solid rgba(14,159,110,0.25); }
.tone-green .chips li { background: #fff; color: var(--green); border: 1px solid rgba(14,159,110,0.25); }

/* ---------------- Contact ---------------- */
.contact-card { padding: 40px; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .contact-card { padding: 64px; grid-template-columns: 7fr 5fr; } }
.contact-copy h2 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.02; letter-spacing: -0.02em; }
.contact-copy .muted { margin: 20px 0 0; max-width: 56ch; }
.contact-list { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.cl-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate-2); }
.contact-list ul { list-style: none; margin: 16px 0 0; padding: 0; }
.contact-list li {
  padding: 12px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 14.5px; color: var(--ink);
  border-top: 1px solid var(--line);
}
.contact-list li:first-child { border-top: 0; }
.i-arr, .i-mail, .i-shield { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.i-arr { color: var(--slate-2); }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--line); background: #fff; }
.footer-row { padding: 40px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.footer-copy { font-size: 14px; color: var(--slate); }
.footer-links { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.footer-links a { color: var(--slate); }
.footer-links a:hover { color: var(--ink); }

/* ---------------- Reveal animation ---------------- */
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.rise { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.rise:nth-of-type(2) { animation-delay: .05s; }
.rise:nth-of-type(3) { animation-delay: .1s; }
.rise:nth-of-type(4) { animation-delay: .15s; }
