/* =====================================================================
   Vesyra Studios — marketing / platform shell
   Used by landing.html and projects.html only.
   The PA Decision app keeps its own style.css untouched.
   ===================================================================== */

:root {
  --deck-blue:   #619DD1;
  --deck-blue-d: #3F7CAE;
  --deck-blue-bg:#F4F8FC;
  --navy:        #0F2A52;
  --navy-2:      #16386B;
  --teal:        #0D7C8A;
  --coral:       #E2725B;
  --coral-d:     #C5604F;
  --green:       #059669;
  --ink:         #1F2937;
  --slate:       #475569;
  --muted:       #94A3B8;
  --soft:        #E2E8F0;
  --white:       #FFFFFF;
  --sand:        #F4F1EB;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Calibri, Arial, sans-serif;
  background: #FAFAFA;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============== Top navigation ============== */
.site-nav {
  background: var(--navy);
  border-bottom: 4px solid var(--deck-blue);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--white);
  margin-right: auto;
}
.site-brand .mark {
  width: 15px; height: 15px;
  background: var(--coral);
  border-radius: 3px;
  flex-shrink: 0;
}
.site-brand .name {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.site-brand .sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}
.site-nav nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.site-nav nav a:hover { background: rgba(255,255,255,0.09); color: var(--white); }
.site-nav nav a.active { background: var(--deck-blue-d); color: var(--white); font-weight: 600; }
.site-nav nav a.cta {
  background: var(--coral);
  color: var(--white);
  font-weight: 600;
  margin-left: 8px;
}
.site-nav nav a.cta:hover { background: var(--coral-d); }

/* ============== Hero ============== */
.hero {
  background:
    radial-gradient(1100px 460px at 12% -10%, rgba(97,157,209,0.30), transparent 62%),
    linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 55%, #0B2140 100%);
  color: var(--white);
  padding: 86px 0 78px 0;
}
.hero .eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9FC6E8;
  border: 1px solid rgba(159,198,232,0.34);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 20px 0;
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: #8FC0E6;
}
.hero p.lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin: 0 0 32px 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
}
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-d); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.34);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.6); }
.btn-primary { background: var(--deck-blue-d); color: var(--white); }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-disabled {
  background: var(--soft);
  color: var(--muted);
  cursor: not-allowed;
}

/* ============== Stat strip ============== */
.strip {
  background: var(--white);
  border-bottom: 1px solid var(--soft);
}
.strip .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.strip .item .n {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.strip .item .l {
  font-size: 11.5px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-top: 6px;
  display: block;
}

/* ============== Generic section ============== */
.section { padding: 68px 0; }
.section.tint { background: var(--deck-blue-bg); }

.sec-head { max-width: 62ch; margin-bottom: 36px; }
.sec-head .kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--deck-blue-d);
  margin-bottom: 10px;
}
.sec-head h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px 0;
  line-height: 1.25;
}
.sec-head p {
  color: var(--slate);
  font-size: 15.5px;
  margin: 0;
}

/* ============== Feature cards ============== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: 8px;
  padding: 26px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature:hover { box-shadow: 0 8px 26px rgba(15,42,82,0.09); transform: translateY(-2px); }
.feature .ic {
  width: 42px; height: 42px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--white);
}
.feature .ic.blue  { background: var(--deck-blue-d); }
.feature .ic.coral { background: var(--coral); }
.feature .ic.teal  { background: var(--teal); }
.feature h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--ink);
}
.feature p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.62; }

/* ============== Project cards ============== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
}
.pcard {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}
.pcard.live:hover {
  box-shadow: 0 14px 34px rgba(15,42,82,0.13);
  transform: translateY(-3px);
  border-color: var(--deck-blue);
}
.pcard .thumb {
  height: 138px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
}
.pcard .thumb.t-health {
  background: linear-gradient(135deg, #0F2A52 0%, #3F7CAE 100%);
}
.pcard .thumb.t-vision {
  background: linear-gradient(135deg, #0D7C8A 0%, #4FB3A8 100%);
}
.pcard .thumb.t-nlp {
  background: linear-gradient(135deg, #7A3B8F 0%, #B06CC4 100%);
}
.pcard .thumb .badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge.live  { background: #DCFCE7; color: #166534; }
.badge.soon  { background: rgba(255,255,255,0.22); color: var(--white); }
.pcard .thumb .cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.pcard .body {
  padding: 20px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcard h3 {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.32;
  margin: 0 0 9px 0;
  color: var(--ink);
}
.pcard .desc {
  color: var(--slate);
  font-size: 13.8px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}
.pcard .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.chip {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--deck-blue-bg);
  color: var(--deck-blue-d);
  border: 1px solid #DCE8F3;
}
.pcard .meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--soft);
}
.pcard .meta span { display: inline-flex; align-items: center; gap: 5px; }
.pcard .go { margin-top: 16px; }
.pcard .go .btn { width: 100%; justify-content: center; }
.pcard.soon { opacity: 0.88; }

/* ============== Featured band ============== */
.featured {
  background: var(--white);
  border: 1px solid var(--soft);
  border-left: 5px solid var(--coral);
  border-radius: 10px;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 34px;
  align-items: center;
}
.featured .kicker {
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}
.featured h3 {
  font-family: Georgia, serif;
  font-size: 26px; font-weight: 400; line-height: 1.28;
  margin: 0 0 12px 0; color: var(--ink);
}
.featured p { color: var(--slate); font-size: 14.5px; margin: 0 0 20px 0; }
.featured .mini-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  background: var(--deck-blue-bg);
  border-radius: 8px;
  padding: 22px;
}
.featured .mini-stats .n {
  font-family: Georgia, serif; font-size: 24px; font-weight: 600;
  color: var(--navy); display: block; line-height: 1;
}
.featured .mini-stats .l {
  font-size: 11px; color: var(--slate); text-transform: uppercase;
  letter-spacing: 0.6px; margin-top: 5px; display: block;
}

/* ============== Footer ============== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.66);
  padding: 44px 0 34px 0;
  font-size: 13px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer .fb-name {
  font-family: Georgia, serif; font-size: 18px; color: var(--white);
  font-weight: 600; margin-bottom: 8px;
}
.site-footer h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.5); margin: 0 0 12px 0; font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer .base {
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.42);
}

/* ============== Responsive ============== */
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 58px 0 52px 0; }
  .hero h1 { font-size: 34px; max-width: none; }
  .hero p.lede { font-size: 15.5px; }
  .sec-head h2 { font-size: 26px; }
  .featured { grid-template-columns: 1fr; padding: 26px 24px; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .site-nav .wrap { gap: 12px; height: auto; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
  .site-brand .sub { display: none; }
  .section { padding: 46px 0; }
}
