/* ==========================================================================
   SILICON MINDS — Design System
   AI-Driven Digital Reputation Management & Digital Trust
   Rebuilt to match the craft level of the original Silicon Minds site:
   Playfair Display + DM Sans + DM Mono, deep forest-green field, noise
   texture, radial gradients, glass-morphism panels, glowing accents,
   bright solid-green cards. Content is the current Digital Trust
   Framework™ positioning; visual language is the brand's true identity.
   ========================================================================== */

:root{
  --bg-900:      #061a0e;
  --bg-800:      #0a2e18;
  --bg-700:      #134d28;
  --green:       #3dd68c;
  --green-dark:  #2bb374;
  --green-tint:  rgba(61,214,140,0.14);
  --mint:        #7ee8b0;
  --black:       #030d06;
  --white:       #edfaf2;
  --gray-text:   #6b9e7a;
  --accent:      #a8ffcc;
  --amber:       #F5A623;
  --red:         #FF6A5C;

  /* legacy aliases used across component rules */
  --dark:        var(--black);
  --navy:        var(--white);
  --gray-bg:     var(--bg-800);
  --gray-line:   rgba(126,232,176,0.16);
  --green-line:  rgba(61,214,140,0.22);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono:  'DM Mono', 'SFMono-Regular', Consolas, 'Courier New', monospace;
  --font: var(--font-sans);

  --max-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.4);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.55);
  --glow-sm: 0 0 24px rgba(61,214,140,0.35);
  --glow-md: 0 0 44px rgba(61,214,140,0.4), 0 4px 16px rgba(0,0,0,0.55);

  --ease: cubic-bezier(.16,.84,.44,1);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  position: relative;
}

/* film-grain noise overlay across the whole site */
body::before{
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

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

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

ul{ margin: 0; padding: 0; list-style: none; }

h1,h2,h3,h4{ margin: 0; font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.01em; color: var(--white); line-height: 1.18; }

em{ font-style: italic; color: var(--green); }

p{ margin: 0; }

.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

section{ position: relative; }

.section-pad{ padding: 112px 0; }
.section-pad-sm{ padding: 72px 0; }

@media (max-width: 900px){
  .section-pad{ padding: 72px 0; }
  .section-pad-sm{ padding: 48px 0; }
  .container{ padding: 0 24px; }
}

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before{
  content: "//";
  opacity: 0.55;
  display: inline-block;
}

h1.display{ font-size: clamp(2.6rem, 4.8vw, 4.4rem); line-height: 1.04; letter-spacing: -0.02em; }
h2.display{ font-size: clamp(1.9rem, 3.2vw, 2.7rem); line-height: 1.14; }
h3.display{ font-size: 1.4rem; line-height: 1.3; }

.lede{
  font-size: 1.15rem;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 640px;
}

.section-head{
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2{ margin-bottom: 18px; }
.section-head p{ font-size: 1.05rem; color: var(--gray-text); line-height: 1.75; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--green);
  color: var(--black);
  box-shadow: var(--glow-sm), 0 2px 8px rgba(0,0,0,0.5);
}
.btn-primary:hover{ background: var(--accent); transform: translateY(-2px); box-shadow: var(--glow-md); }
.btn-outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(126,232,176,0.28);
}
.btn-outline:hover{ border-color: var(--green); color: var(--mint); transform: translateY(-2px); }
.btn-ghost-light{
  background: transparent;
  color: var(--white);
  border-color: rgba(237,250,242,0.24);
}
.btn-ghost-light:hover{ border-color: var(--white); }
.btn-sm{ padding: 10px 20px; font-size: 0.84rem; }
.btn-arrow{ font-size: 1.05em; transition: transform .18s var(--ease); }
.btn:hover .btn-arrow{ transform: translateX(3px); }

.cta-row{ display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,20,12,0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--gray-line);
}
.nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--white);
  white-space: nowrap;
}
.brand .mark{
  width: 20px; height: 20px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='8' y='8' width='24' height='24' rx='6' fill='%233dd68c'/%3E%3Crect x='32' y='8' width='24' height='24' rx='6' fill='%233dd68c' fill-opacity='0.5'/%3E%3Crect x='8' y='32' width='24' height='24' rx='6' fill='%233dd68c' fill-opacity='0.5'/%3E%3Crect x='32' y='32' width='24' height='24' rx='6' fill='%233dd68c'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-links a{
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-text);
  white-space: nowrap;
  transition: color .16s var(--ease);
}
.nav-links a:hover{ color: var(--mint); }
.nav-links a.active{ color: var(--green); }
.nav-cta{ display: flex; align-items: center; gap: 14px; flex-shrink: 0; white-space: nowrap; }
.nav-toggle{ display: none; }

@media (max-width: 1240px){
  .nav-links{
    position: fixed; inset: 78px 0 0 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 22px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a{ font-size: 1.05rem; white-space: normal; }
  .nav-cta .btn-outline{ display: none; }
  .nav-toggle{
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
  }
  .nav-toggle span{ width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
}

@media (max-width: 460px){
  .brand{ font-size: 1.02rem; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero{
  padding: 128px 0 108px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 1100px 640px at 78% -6%, #0f4d2e 0%, #082e18 42%, #061a0e 78%);
  border-bottom: 1px solid var(--gray-line);
}
.hero::before{
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(126,232,176,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(126,232,176,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 35%, transparent 100%);
}
.hero .container{
  display: grid;
  grid-template-columns: 1.05fr 0.7fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero h1{ margin-bottom: 24px; }
.hero .lede{ max-width: 100%; margin-bottom: 36px; font-size: 1.14rem; }
.hero-badges{
  display: flex; gap: 30px; margin-top: 56px; flex-wrap: wrap;
}
.hero-badge{ display: flex; flex-direction: column; gap: 2px; }
.hero-badge b{ font-family: var(--font-serif); font-size: 1.7rem; color: var(--white); font-weight: 700; }
.hero-badge span{ font-size: 0.78rem; color: var(--gray-text); }

.hero-panel{
  position: relative;
  background: linear-gradient(180deg, rgba(11,34,20,0.92), rgba(6,18,10,0.88));
  border: 1px solid var(--green-line);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  animation: panelFloat 6s ease-in-out infinite, panelGlow 4.5s ease-in-out infinite;
}
.hero-panel::before{
  content: "";
  position: absolute; top: 0; left: -45%; width: 45%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: shimmerSweep 3.6s ease-in-out infinite;
  z-index: 2;
}
.hero-panel::after{
  content: "";
  position: absolute; top: -70px; right: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(126,232,176,0.35), transparent 70%);
  filter: blur(22px);
  animation: blobPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes panelFloat{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }
@keyframes panelGlow{
  0%,100%{ box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 40px rgba(126,232,176,0.16), inset 0 1px 0 rgba(126,232,176,0.14); }
  50%{ box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 76px rgba(126,232,176,0.34), inset 0 1px 0 rgba(126,232,176,0.24); }
}
@keyframes shimmerSweep{ 0%{ left: -45%; } 100%{ left: 100%; } }
@keyframes blobPulse{ 0%,100%{ opacity: 0.5; transform: scale(1); } 50%{ opacity: 0.9; transform: scale(1.15); } }

.hp-top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; position: relative; z-index: 1; }
.hero-panel .hp-label{
  font-family: var(--font-mono);
  color: var(--mint);
  opacity: 0.9;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hp-live{
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
}
.hp-live i{
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse{
  0%{ box-shadow: 0 0 0 0 rgba(168,255,204,0.55); }
  70%{ box-shadow: 0 0 0 8px rgba(168,255,204,0); }
  100%{ box-shadow: 0 0 0 0 rgba(168,255,204,0); }
}

.hp-row{
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(126,232,176,0.09);
  position: relative; z-index: 1;
}
.hp-row:last-child{ border-bottom: none; }
.hp-row .plat{ color: var(--white); font-size: 0.88rem; font-weight: 500; }

.hp-badge{
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px 5px 9px;
  border-radius: 999px;
  font-size: 0.76rem; font-weight: 700;
}
.hp-badge .hp-dot{ width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.hp-badge--strong{ background: rgba(126,232,176,0.15); color: var(--mint); }
.hp-badge--strong .hp-dot{
  background: var(--mint);
  box-shadow: 0 0 10px rgba(126,232,176,0.7);
  animation: dotPulse 2.2s ease-in-out infinite;
}
.hp-badge--developing{ background: rgba(245,166,35,0.12); color: var(--amber); }
.hp-badge--developing .hp-dot{ background: var(--amber); box-shadow: 0 0 8px rgba(245,166,35,0.5); }
.hp-badge--limited{ background: rgba(255,106,92,0.12); color: var(--red); }
.hp-badge--limited .hp-dot{ background: var(--red); box-shadow: 0 0 8px rgba(255,106,92,0.45); }
@keyframes dotPulse{ 0%,100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(1.4); opacity: 0.65; } }

@media (prefers-reduced-motion: reduce){
  .hero-panel, .hero-panel::before, .hero-panel::after, .hp-live i, .hp-badge--strong .hp-dot{ animation: none; }
}

@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero{ padding: 64px 0 64px; }
  .hero-panel{ order: -1; }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card{
  background: var(--bg-800);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.card:hover{ box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-line); }

.grid{ display: grid; gap: 22px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.icon-num{
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-tint);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 18px;
}

.card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.card p{ color: var(--gray-text); font-size: 0.92rem; line-height: 1.7; }
.card .tag{
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Dark band / sections
   -------------------------------------------------------------------------- */

.band-dark{
  background: var(--black);
  color: var(--white);
}
.band-dark .eyebrow{ color: var(--green); }
.band-dark h2{ color: var(--white); }
.band-dark p{ color: rgba(237,250,242,0.62); }
.band-dark .section-head p{ color: rgba(237,250,242,0.6); }

.band-gray{ background: var(--bg-800); }

/* --------------------------------------------------------------------------
   Framework pillars
   -------------------------------------------------------------------------- */

.pillars{ display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 980px){ .pillars{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pillars{ grid-template-columns: 1fr; } }

.pillar{
  background: var(--bg-800);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.pillar:hover{ transform: translateY(-3px); border-color: var(--green-line); }
.pillar::before{
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(61,214,140,0.6);
}
.pillar .pnum{
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 500; color: var(--green);
  letter-spacing: 0.1em; margin-bottom: 10px; display: block;
}
.pillar h4{ font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pillar p{ font-size: 0.86rem; color: var(--gray-text); line-height: 1.65; }
.pillar .weight{
  margin-top: 14px; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; color: var(--green);
  display: inline-block; padding: 3px 10px; background: rgba(61,214,140,0.1); border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Dashboard / score cards
   -------------------------------------------------------------------------- */

.dashboard{
  background: var(--bg-800);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.dash-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
@media (max-width: 760px){ .dash-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .dash-grid{ grid-template-columns: 1fr; } }

.dash-card{
  background: var(--bg-900);
  border-radius: var(--radius-sm);
  padding: 20px;
  border-left: 4px solid var(--green);
}
.dash-card.amber{ border-left-color: var(--amber); }
.dash-card.navy{ border-left-color: var(--mint); }
.dash-card .dlabel{ font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 8px; }
.dash-card .dval{ font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--white); }

.dash-score{
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-900);
  border: 1px solid var(--green-line);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-top: 8px;
  color: var(--white);
  flex-wrap: wrap;
  gap: 16px;
}
.dash-score .dslabel{ font-weight: 700; font-size: 1rem; }
.dash-score .dsval{ font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: var(--green); }

/* --------------------------------------------------------------------------
   Process timeline
   -------------------------------------------------------------------------- */

.timeline{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 980px){ .timeline{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .timeline{ grid-template-columns: 1fr; } }

.tstep{
  background: var(--bg-800);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.tstep:hover{ transform: translateY(-3px); border-color: var(--green-line); }
.tstep .tno{
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 0.9rem; margin-bottom: 14px;
  box-shadow: 0 0 14px rgba(61,214,140,0.5);
}
.tstep h4{ font-size: 0.98rem; margin-bottom: 6px; }
.tstep p{ font-size: 0.83rem; color: var(--gray-text); line-height: 1.6; }

/* --------------------------------------------------------------------------
   Solutions / Industries — bright solid-green cards (signature treatment)
   -------------------------------------------------------------------------- */

.solution-card{
  background: var(--green);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(61,214,140,0.22), 0 2px 8px rgba(0,0,0,0.2);
  transition: background .3s var(--ease), transform .22s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.solution-card::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 24% 0%, rgba(255,255,255,0.22), transparent 65%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.solution-card:hover{
  background: var(--accent);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 20px 54px rgba(61,214,140,0.35), 0 0 44px rgba(61,214,140,0.22);
}
.solution-card:hover::before{ opacity: 1; }
.solution-card h3{ font-size: 1.2rem; margin-bottom: 10px; color: var(--black); position: relative; z-index: 1; }
.solution-card p{ color: #0d3520; font-size: 0.9rem; flex-grow: 1; line-height: 1.7; position: relative; z-index: 1; }
.solution-card a{
  margin-top: 18px; font-size: 0.82rem; font-weight: 700; color: var(--black);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.5rem 1.1rem; border: 1px solid rgba(3,13,6,0.3); border-radius: 999px;
  background: rgba(3,13,6,0.08); align-self: flex-start;
  transition: gap .2s var(--ease), background .2s var(--ease);
  position: relative; z-index: 1;
}
.solution-card a:hover{ gap: 10px; background: rgba(3,13,6,0.16); }

.industry-card{
  background: var(--bg-800);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.industry-card:hover{ transform: translateY(-3px); border-color: var(--green-line); }
.industry-card h3{ font-size: 1.06rem; margin-bottom: 12px; }
.industry-card ul{ display: flex; flex-direction: column; gap: 8px; }
.industry-card li{ font-size: 0.86rem; color: var(--gray-text); padding-left: 16px; position: relative; }
.industry-card li::before{
  content: ""; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px rgba(61,214,140,0.7);
}

/* --------------------------------------------------------------------------
   Quote / stat strip
   -------------------------------------------------------------------------- */

.stat-strip{
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  padding: 44px 0;
}
@media (max-width: 760px){ .stat-strip{ grid-template-columns: repeat(2,1fr); } }
.stat{ text-align: left; }
.stat b{ display: block; font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--white); }
.stat span{ font-size: 0.84rem; color: var(--gray-text); }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.final-cta{
  background: var(--bg-900);
  color: var(--white);
  border: 1px solid var(--green-line);
  border-radius: var(--radius-lg);
  padding: 76px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before{
  content: '"';
  font-family: var(--font-serif); font-size: 18rem; font-weight: 900;
  color: var(--green); opacity: 0.05; position: absolute; top: -3rem; left: 1rem; line-height: 1;
  pointer-events: none;
}
.final-cta h2{ color: var(--white); margin-bottom: 18px; position: relative; }
.final-cta p{ color: rgba(237,250,242,0.62); max-width: 560px; margin: 0 auto 34px; position: relative; }
.final-cta .cta-row{ justify-content: center; position: relative; }

@media (max-width: 640px){ .final-cta{ padding: 48px 26px; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer{
  background: var(--black);
  color: rgba(237,250,242,0.6);
  padding: 76px 0 32px;
  border-top: 1px solid var(--gray-line);
}
.footer .brand{ color: var(--white); margin-bottom: 14px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(126,232,176,0.1);
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer-grid p{ font-size: 0.87rem; max-width: 280px; line-height: 1.7; }
.footer-col h5{
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-col a{ font-size: 0.87rem; transition: color .16s var(--ease); }
.footer-col a:hover{ color: var(--mint); }

.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a{ opacity: 0.8; }

/* --------------------------------------------------------------------------
   Breadcrumb / page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero{
  padding: 64px 0 84px;
  border-bottom: 1px solid var(--gray-line);
  background: radial-gradient(ellipse 900px 460px at 82% -10%, #0f4d2e 0%, #082e18 45%, #061a0e 90%);
}
.page-hero .lede{ margin-top: 20px; }
.breadcrumb{ font-family: var(--font-mono); font-size: 0.78rem; color: var(--gray-text); margin-bottom: 20px; }
.breadcrumb a{ color: var(--gray-text); }
.breadcrumb a:hover{ color: var(--green); }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.text-center{ text-align: center; }
.mt-8{ margin-top: 8px; }
.mt-16{ margin-top: 16px; }
.mt-24{ margin-top: 24px; }
.mt-40{ margin-top: 40px; }
.mb-0{ margin-bottom: 0; }
.divider{ height: 1px; background: var(--gray-line); margin: 56px 0; }
.badge-list{ display: flex; flex-wrap: wrap; gap: 10px; }
.badge{
  font-family: var(--font-mono);
  font-size: 0.74rem; font-weight: 500; color: var(--green);
  background: var(--green-tint); padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--green-line);
}
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; gap: 32px; } }

.kicker-list{ display: flex; flex-direction: column; gap: 28px; }
.kicker-item{ display: flex; gap: 18px; }
.kicker-item .ki-mark{
  width: 8px; height: 8px; border-radius: 2px; background: var(--green);
  margin-top: 8px; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(61,214,140,0.7);
}
.kicker-item h4{ font-size: 1.02rem; margin-bottom: 6px; }
.kicker-item p{ font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; }

.faq{ border-top: 1px solid var(--gray-line); }
.faq-item{ border-bottom: 1px solid var(--gray-line); padding: 24px 0; }
.faq-item summary{
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.05rem; color: var(--white);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{ content: "+"; font-size: 1.4rem; color: var(--green); font-weight: 400; }
.faq-item[open] summary::after{ content: "–"; }
.faq-item p{ margin-top: 14px; color: var(--gray-text); font-size: 0.93rem; max-width: 760px; line-height: 1.75; }

.skip-link{
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: var(--black); padding: 10px 16px; z-index: 200; font-weight: 700;
}
.skip-link:focus{ left: 16px; top: 16px; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

input, textarea, select{
  background: rgba(126,232,176,0.05);
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
input:focus, textarea:focus, select:focus{
  outline: none; border-color: var(--green); background: rgba(126,232,176,0.09);
}
input::placeholder, textarea::placeholder{ color: var(--gray-text); }
select option{ background: var(--bg-800); }

/* --------------------------------------------------------------------------
   Scroll-reveal (fade-up)
   -------------------------------------------------------------------------- */

[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in-view{
  opacity: 1;
  transform: translateY(0);
}
