/* Trident Nova - Static Preview
   Palette:
   - Navy: #0B1F33
   - Off-white: #F7F9FC
   - Accent green: #2F7D65
   - Text grey: #374151
   - Border: #E5E7EB
*/

:root{
  --navy:#0B1F33;
  --bg:#F7F9FC;
  --accent:#2F7D65;
  --text:#0B1F33;
  --muted:#374151;
  --border:#E5E7EB;
  --card:#FFFFFF;
  --shadow: 0 10px 30px rgba(11,31,51,0.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a{ color: var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(247,249,252,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  box-shadow: 0 8px 18px rgba(11,31,51,0.18);
  flex: 0 0 auto;
}

.brand-text{ min-width:0; }
.brand-name{
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand-tag{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
}

.hero{
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(47,125,101,0.15), transparent 60%),
              radial-gradient(900px 500px at 95% 10%, rgba(11,31,51,0.18), transparent 60%);
}

.hero-bg{
  position:absolute;
  inset:0;
  opacity: 0.12;
  background-image:
    linear-gradient(to bottom, rgba(247,249,252,0.65), rgba(247,249,252,0.92)),
    url('./about-field-founder.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.02);
}

.hero-inner{
  position: relative;
  padding: 10px 0 0;
}

.kicker{
  display:inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  padding: 8px 12px;
  border-radius: 999px;
}

h1{
  margin: 14px 0 12px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead{
  margin: 0 0 18px;
  font-size: clamp(16px, 1.25vw, 18px);
  color: var(--muted);
  max-width: 60ch;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
  will-change: transform;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 24px rgba(47,125,101,0.18);
}

.btn-primary:hover{
  text-decoration:none;
  box-shadow: 0 14px 26px rgba(47,125,101,0.24);
}

.btn-ghost{
  background: rgba(255,255,255,0.75);
  border-color: var(--border);
  color: var(--navy);
}
.btn-ghost:hover{ text-decoration:none; }

.dev-note{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 70ch;
}

.section{
  padding: 56px 0;
}

.section-alt{
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2{
  margin: 0 0 10px;
  font-size: clamp(20px, 2.1vw, 28px);
  letter-spacing: -0.01em;
}

p{ margin: 0 0 12px; color: var(--muted); }

.section-head{
  display:flex;
  gap: 18px;
  align-items:flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-head .muted{ max-width: 70ch; }

.cards{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3{
  margin: 10px 0 8px;
  font-size: 18px;
  color: var(--navy);
}

.card-icon{
  height: 38px;
  display:flex;
  align-items:center;
  gap: 8px;
}

.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
  display:inline-block;
}
.bar{
  width: 18px; height: 8px;
  border-radius: 999px;
  background: rgba(47,125,101,0.25);
  display:inline-block;
}
.bar.short{ width: 12px; }

.ring{
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(47,125,101,0.45);
  display:inline-block;
}
.ring.small{
  width: 14px; height: 14px;
  border-color: rgba(11,31,51,0.35);
}

.grid{
  width: 34px; height: 24px;
  border-radius: 10px;
  border: 1px solid rgba(47,125,101,0.35);
  background:
    linear-gradient(to right, rgba(47,125,101,0.22) 1px, transparent 1px) 0 0 / 8px 8px,
    linear-gradient(to bottom, rgba(47,125,101,0.22) 1px, transparent 1px) 0 0 / 8px 8px;
  display:inline-block;
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 10px 0; }

.pill-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
}

.values{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.value{
  background: rgba(247,249,252,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.value strong{ display:block; color: var(--navy); margin-bottom: 4px; }
.value span{ color: var(--muted); }

.contact-card{
  display:grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-lines{
  margin-top: 12px;
  display:grid;
  gap: 8px;
  color: var(--muted);
}
.label{
  display:inline-block;
  min-width: 58px;
  color: var(--navy);
  font-weight: 600;
}
.placeholder{ color: var(--muted); }

.contact-note{
  border-left: 1px solid var(--border);
  padding-left: 16px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.site-footer{
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  padding: 18px 0;
  margin-top: 10px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer .brand-name{ color: white; }
.site-footer .muted{ color: rgba(255,255,255,0.72); }

.small{ font-size: 13px; }
.muted{ color: var(--muted); }

/* Responsive */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .contact-card{ grid-template-columns: 1fr; }
  .contact-note{ border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 12px; }
  .brand-tag{ max-width: 78vw; }
  .section{ padding: 40px 0; }
}

/* Logo constraints */
.logo{
  height: 42px;
  width: auto;
  display: block;
  border-radius: 8px;
  flex: 0 0 auto;
  object-fit: contain;
}
@media (max-width: 900px){
  .logo{ height: 34px; }
}

@media (max-width: 700px){
  .hero-bg{ opacity: 0.08; }
}

/* About / internal page hero */
.page-hero{
  position: relative;
  overflow: hidden;
  padding: 84px 0 48px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #f7f9fc;
}
.page-hero-inner{ position: relative; z-index: 1; max-width: 900px; }
.page-hero-bg{
  position:absolute;
  inset:0;
  opacity: 0.12;
  background-image:
    linear-gradient(to bottom, rgba(247,249,252,0.35), rgba(247,249,252,0.80)),
    url('./about-field-branded.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.10);
}



@media (max-width: 700px){
  .page-hero{ padding: 72px 0 40px; }
  .page-hero-bg{
  position:absolute;
  inset:0;
  opacity: 0.12;
  background-image:
    linear-gradient(to bottom, rgba(247,249,252,0.35), rgba(247,249,252,0.80)),
    url('./about-field-branded.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.10);
}


}


/* Leadership card */
.leader-card{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
}
.leader-name{ font-weight: 700; font-size: 1.05rem; }
.leader-role{ margin-top: 4px; }
.leader-body p{ margin: 0 0 10px; }
.link{ text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px){
  .leader-card{ grid-template-columns: 1fr; }
}

/* Leadership grid */
.leaders-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}
.leader{
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
}
.leader-name{ font-weight: 700; font-size: 1.05rem; }
.leader-desc{ margin: 10px 0 12px; }
@media (max-width: 900px){
  .leaders-grid{ grid-template-columns: 1fr; }
}
/* HERO: shared layout stabiliser */
.hero,
.hero-section,
.page-hero {
  padding: 72px 0;
}

.hero .container,
.hero-section .container,
.page-hero .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero h1,
.hero-section h1,
.page-hero h1 {
  line-height: 1.08;
  max-width: 18ch;
}

.hero p,
.hero-section p,
.page-hero p {
  max-width: 62ch;
}
/* HERO: text colour contract */
.hero, .hero-section, .page-hero {
  color: #0f172a; /* near-black */
}

.hero h1, .hero-section h1, .page-hero h1,
.hero h2, .hero-section h2, .page-hero h2 {
  color: #0f172a;
}

.hero p, .hero-section p, .page-hero p {
  color: #334155; /* dark slate */
}
/* HERO: defeat opacity / overlays applied to hero content */
.hero *, .hero-section *, .page-hero * {
  opacity: 1 !important;
}


