/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --magenta: #c2185b;
  --cyan:    #00bcd4;
  --amber:   #f5a623;
  --dark:    #2b3444;
  --brown:   #3a3230;
  --max-w:   1200px;
}

html { font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
img  { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }


/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 42px; width: auto; max-width: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links > li > a,
.nav-links > li > button {
  font-size: .875rem;
  color: #444;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: 1.25rem 0;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: .01em;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover { color: #111; }

.chevron {
  width: 12px;
  height: 12px;
  fill: #999;
  flex-shrink: 0;
}

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 2px solid var(--cyan);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  min-width: 180px;
  z-index: 200;
}

.nav-item:hover .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: .625rem 1.125rem;
  font-size: .875rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: #f8f8f8; color: var(--cyan); }


/* ═══════════════════════════════════════════
   SHARED SECTION ELEMENTS
═══════════════════════════════════════════ */

.section-rule {
  height: 2px;
  width: 220px;
  margin-bottom: 1.5rem;
}

.rule-magenta { background: var(--magenta); }
.rule-cyan    { background: var(--cyan); }
.rule-amber   { background: var(--amber); }

.inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 80vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.hero-text { max-width: 765px; }

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.hero p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #aebac8;
  margin-bottom: 1rem;
}

.hero p:last-child { margin-bottom: 0; }

.hero .inline-link { color: #fff; font-weight: 600; }


/* ═══════════════════════════════════════════
   PRODUCT SECTIONS (PHOTON + CARTHAGE)
═══════════════════════════════════════════ */

.product { background: #fff; }
.product.carthage { background: var(--brown); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.product-text { flex: 1; }

.product-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.carthage .product-text h2 { color: #fff; }

.product-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #666;
  max-width: 520px;
}

.carthage .product-text p { color: #c5bfbb; }

.product-logo {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-logo img { max-width: 220px; }


/* ═══════════════════════════════════════════
   WORK WITH US
═══════════════════════════════════════════ */

.work-with-us {
  position: relative;
  background-color: #1a2233;
  background-image: url('../images/in_the_field-1-1024x682.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 520px;
}

.work-with-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 40, .75);
}

.work-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.work-text { max-width: 640px; }

.work-with-us h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.work-with-us p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #c8d0d9;
  margin-bottom: 1rem;
}

.work-with-us p:last-child { margin-bottom: 0; }

.work-with-us .inline-link { color: #fff; }


/* ═══════════════════════════════════════════
   CONNECT
═══════════════════════════════════════════ */

.connect {
  position: relative;
  background-color: #f7f7f7;
  background-image: url('../images/mesh_bg@4x-min.png');
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#connect-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.connect-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: flex-start;
}

.connect-card {
  background: rgba(236, 233, 229, .9);
  padding: 2.5rem;
  max-width: 400px;
  width: 100%;
}

.connect-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.connect-card p {
  font-size: .9375rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 1.5rem;
}

.connect-card form {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.connect-card input[type="email"] {
  width: 100%;
  padding: .6875rem 1rem;
  border: 1px solid #ccc;
  background: #fff;
  font-size: .875rem;
  font-family: inherit;
  color: #333;
  outline: none;
}

.connect-card input[type="email"]:focus  { border-color: #666; }
.connect-card input[type="email"]::placeholder { color: #aaa; }

.connect-card button[type="submit"] {
  width: 100%;
  padding: .75rem;
  background: #5a5f6a;
  color: #fff;
  border: none;
  font-size: .875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .01em;
  transition: background .15s;
}

.connect-card button[type="submit"]:hover { background: #3d4148; }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

.site-footer {
  background: linear-gradient(0deg, #f7f7f7 20%, #fff 53%);
  border-top: 1px solid #e8e8e8;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand img { height: 32px; width: auto; margin-bottom: 1.25rem; }

.footer-brand p {
  font-size: .875rem;
  line-height: 1.65;
  color: #666;
  margin-bottom: .875rem;
  max-width: 320px;
}

.footer-contact { font-size: .875rem; }
.footer-contact a { color: var(--cyan); }
.footer-contact a:hover { text-decoration: underline; }
.footer-contact span { color: #888; }

.footer-col h4 {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: .375rem;
}

.footer-col li::before {
  content: '›';
  color: #aaa;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.footer-col a {
  font-size: .875rem;
  color: #666;
}

.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: .75rem;
  color: #aaa;
}


/* ═══════════════════════════════════════════
   PAGE HERO (Carthage / Photon)
═══════════════════════════════════════════ */

.page-hero {
  padding-top: 64px;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.page-hero.carthage-hero { background: var(--brown); }
.page-hero.photon-hero   { background: #fff; }

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.page-hero-text { flex: 1; }

.page-hero-text h1 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.carthage-hero .page-hero-text h1 { color: #fff; }
.photon-hero   .page-hero-text h1 { color: #111; }

.page-hero-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.carthage-hero .page-hero-text p { color: #c5bfbb; }
.photon-hero   .page-hero-text p { color: #555; }

.page-hero-logo {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-logo img { max-width: 260px; }


/* ═══════════════════════════════════════════
   PAGE SUBNAV
═══════════════════════════════════════════ */

.page-subnav {
  background: #fff;
  border-bottom: 2px solid #e8e8e8;
  position: sticky;
  top: 64px;
  z-index: 50;
}

.page-subnav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
}

.page-subnav a {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #666;
  padding: .9375rem 1.125rem;
  display: block;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}

.page-subnav a:hover { color: #111; border-bottom-color: var(--amber); }


/* ═══════════════════════════════════════════
   DARK CONTENT SECTION
═══════════════════════════════════════════ */

.content-dark {
  background: #030f1c;
}

.content-dark .content-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.content-dark .content-text { max-width: 600px; }

.content-dark h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.content-dark .intro { color: #7a9ab8; font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2rem; }

.content-dark .item {
  padding-left: 1.25rem;
  border-left: 2px solid var(--amber);
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #aebac8;
}

.content-dark .item strong { color: #fff; display: block; margin-bottom: .25rem; }


/* ═══════════════════════════════════════════
   LIGHT CONTENT SECTION
═══════════════════════════════════════════ */

.content-light {
  background: #fff;
}

.content-light .content-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.content-light .content-text { max-width: 600px; }

.content-light h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.content-light .intro { color: #555; font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2rem; }

.content-light .item {
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #555;
}

.content-light .item strong { color: #111; display: block; margin-bottom: .25rem; }


/* ═══════════════════════════════════════════
   CREDENTIALS SECTION
═══════════════════════════════════════════ */

.credentials {
  position: relative;
  background-color: #1a2233;
  background-image: url('../images/in_the_field-1-1024x682.jpg');
  background-size: cover;
  background-position: center;
}

.credentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 24, .88);
}

.credentials-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.credentials h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.credentials > .credentials-inner > p,
.credentials-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #b0bec5;
  max-width: 640px;
  margin-bottom: 1rem;
}

.credentials .inline-link { color: #fff; }

.credentials-sub {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem;
  margin-bottom: 4rem;
}

.pdf-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-decoration: none;
  transition: background .15s;
}

.pdf-card:hover { background: rgba(255,255,255,.11); }

.pdf-card-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.pdf-card-desc {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  flex: 1;
}

.pdf-card-cta {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .5rem;
}

.get-product {
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.get-product h3 { margin-bottom: 1rem; }

.get-product > p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #b0bec5;
  max-width: 580px;
  margin-bottom: 1.5rem;
}

.get-product .inline-link { color: #fff; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  max-width: 460px;
}

.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: .6875rem 0.5rem;
  border: 1px solid rgb(113, 113, 113);
  background: rgba(255, 255, 255, 0);
  font-size: .875rem;
  font-family: inherit;  
  color: #767676;
  outline: none;
  resize: vertical;
}

.contact-form input[type="email"]:focus,


.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder { color: #767676; }

.contact-form textarea { min-height: 110px; color: #767676; }

.contact-form button[type="submit"] {
  align-self: flex-start;
  padding: .75rem 2.25rem;
  background: var(--amber);
  color: #fff;
  border: none;
  font-size: .875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s;
}

.contact-form button[type="submit"]:hover { background: #d4911f; }

.feature-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: .7;
}


/* ═══════════════════════════════════════════
   FEATURE CARDS (Photon vs The Others)
═══════════════════════════════════════════ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.feature-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: .7;
}

.feature-card h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}


/* ═══════════════════════════════════════════
   PHOTO SECTIONS (various bg images)
═══════════════════════════════════════════ */

.photo-section {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 480px;
}

.photo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 24, .82);
}

.photo-section.florence-bg   { background-image: url('../images/florence.png'); }
.photo-section.field-bg      { background-image: url('../images/in_the_field-1-1024x682.jpg'); }
.photo-section.padbank-bg    { background-image: url('../images/pad-bank-users.jpg'); }
.photo-section.ebc-bg        { background-image: url('../images/ebc.png'); }

.photo-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.photo-text { flex: 1; }

.photo-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.photo-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #b0bec5;
  max-width: 540px;
}

.photo-media {
  flex-shrink: 0;
  max-width: 380px;
  width: 100%;
}

.photo-media img {
  width: 100%;
  border: 2px solid rgba(255,255,255,.15);
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */

.testimonials-section {
  background: #f9f9f9;
}

.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.testimonials-inner h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  padding: 1.75rem;
  border-left: 3px solid var(--cyan);
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.testimonial-org {
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.testimonial-attr {
  font-size: .8125rem;
  font-weight: 600;
  color: #444;
  line-height: 1.4;
}

.testimonial-quote {
  font-size: .9375rem;
  line-height: 1.65;
  color: #444;
  font-style: italic;
  flex: 1;
}

.testimonial-link {
  font-size: .75rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.testimonial-link:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════
   PHOTON CONNECT (mesh bg)
═══════════════════════════════════════════ */

.photon-connect {
  position: relative;
  background-image: url('../images/mesh_bg@4x-e1552499586498.jpg');
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.photon-connect-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.5rem;
}

.photon-connect-card {
  background: rgba(236, 233, 229, .9);
  padding: 2.5rem;
  max-width: 525px;
  width: 100%;
}

.photon-connect h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.photon-connect p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #555;
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.photon-connect .connect-form {
  display: flex;
  gap: .5rem;
  max-width: 420px;
}

.photon-connect .connect-form input[type="email"] {
  flex: 1;
  padding: .6875rem 1rem;
  border: 1px solid #ccc;
  background: #fff;
  font-size: .875rem;
  font-family: inherit;
  color: #333;
  outline: none;
}

.photon-connect .connect-form input[type="email"]:focus { border-color: var(--cyan); }
.photon-connect .connect-form input[type="email"]::placeholder { color: #aaa; }

.photon-connect .connect-form button[type="submit"] {
  padding: .75rem 1.5rem;
  background: var(--cyan);
  color: #fff;
  border: none;
  font-size: .875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}

.photon-connect .connect-form button[type="submit"]:hover { background: #009ab8; }


/* ═══════════════════════════════════════════
   DEMO FORM (on photo bg section)
═══════════════════════════════════════════ */

.demo-sub-heading {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}

.demo-sub-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0bec5;
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .625rem;
  max-width: 520px;
}

.demo-form input {
  padding: .6875rem 1rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  font-size: .875rem;
  font-family: inherit;
  color: #fff;
  outline: none;
}

.demo-form input:focus { border-color: rgba(255,255,255,.45); }
.demo-form input::placeholder { color: rgba(255,255,255,.35); }
.demo-form input[type="email"] { grid-column: 1 / -1; }

.demo-form button[type="submit"] {
  grid-column: 1 / -1;
  padding: .75rem;
  background: var(--cyan);
  color: #fff;
  border: none;
  font-size: .875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s;
}

.demo-form button[type="submit"]:hover { background: #009ab8; }


/* ═══════════════════════════════════════════
   SIMPLE HERO (text-only interior pages)
═══════════════════════════════════════════ */

.simple-hero {
  background: var(--dark);
  padding-top: 64px;
}

.simple-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  max-width-text: 680px;
}

.simple-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.simple-hero .lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #aebac8;
  max-width: 680px;
}

.simple-hero p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #aebac8;
  max-width: 680px;
  margin-bottom: 1rem;
}

.simple-hero p:last-child { margin-bottom: 0; }

.simple-hero .inline-link { color: #fff; }


/* ═══════════════════════════════════════════
   INTERIOR CONTENT (light bg)
═══════════════════════════════════════════ */

.interior {
  background: #fff;
}

.interior-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.interior-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.interior-inner h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .75rem;
  margin-top: 2.5rem;
}

.interior-inner h3:first-child { margin-top: 0; }

.interior-inner p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #555;
  max-width: 760px;
  margin-bottom: 1rem;
}

.interior-inner p:last-child { margin-bottom: 0; }

.interior-inner .inline-link { color: var(--cyan); }

.interior-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.interior-inner ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: .25rem;
}

.interior-inner .fact-table {
  background: #f4f4f4;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: .9375rem;
  line-height: 1.7;
  color: #444;
  max-width: 640px;
  border-left: 3px solid var(--cyan);
}

.interior-inner .fact-table dt { font-weight: 700; color: #222; display: inline; }
.interior-inner .fact-table dd { display: inline; margin-left: .375rem; color: #555; }
.interior-inner .fact-table dt::before { content: ''; display: block; }


/* ═══════════════════════════════════════════
   SIMPLE CONNECT (no bg image)
═══════════════════════════════════════════ */

.simple-connect {
  background: #f4f6f8;
  border-top: 1px solid #e0e0e0;
}

.simple-connect-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.simple-connect h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
  margin-bottom: .75rem;
}

.simple-connect p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.simple-connect .connect-form {
  display: flex;
  gap: .5rem;
  max-width: 420px;
}

.simple-connect .connect-form input[type="email"] {
  flex: 1;
  padding: .6875rem 1rem;
  border: 1px solid #ccc;
  background: #fff;
  font-size: .875rem;
  font-family: inherit;
  color: #333;
  outline: none;
}

.simple-connect .connect-form input[type="email"]:focus { border-color: var(--cyan); }
.simple-connect .connect-form input[type="email"]::placeholder { color: #aaa; }

.simple-connect .connect-form button[type="submit"] {
  padding: .75rem 1.5rem;
  background: var(--dark);
  color: #fff;
  border: none;
  font-size: .875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
}

.simple-connect .connect-form button[type="submit"]:hover { background: #1e2840; }


/* ═══════════════════════════════════════════
   DOWNLOAD LIST (Media & Downloads)
═══════════════════════════════════════════ */

.download-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.download-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  background: #fff;
  transition: border-color .15s, background .15s;
}

.download-item:hover { border-color: var(--cyan); background: #f8fdff; }

.download-item-info h4 {
  font-size: .9375rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .25rem;
  line-height: 1.35;
}

.download-item-info p {
  font-size: .8125rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  max-width: 580px;
}

.download-cta {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  align-self: center;
}


/* ═══════════════════════════════════════════
   TEAM BIOS (Company page)
═══════════════════════════════════════════ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.team-bio h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .5rem;
}

.team-bio p {
  font-size: .9375rem;
  line-height: 1.7;
  color: #555;
  max-width: none;
  margin-bottom: .75rem;
}

.team-bio p:last-child { margin-bottom: 0; }

.team-bio .inline-link { color: var(--cyan); }


/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.address-block h2 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.address-block address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

.address-block address strong { color: #111; display: block; margin-top: 1rem; }
.address-block address strong:first-child { margin-top: 0; }

.contact-form-section h2 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1.25rem;
}
