:root {
  --yellow: #ffea00;
  --black: #050505;
  --dark: #111111;
  --muted: #6d6d6d;
  --line: #e8e8e8;
  --bg: #ffffff;
  --soft: #f6f6f3;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 110px; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.45;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 44px);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand-logo { width: 69px; height: auto; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 15px; }
.nav a { text-decoration: none; }
.nav-cta { background: var(--black); color: #fff; padding: 10px 16px; border-radius: 999px; }

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(18px, 3vw, 38px) 0;
}
.compact-section { padding-top: clamp(14px, 2.4vw, 28px); padding-bottom: clamp(22px, 4vw, 46px); }
.two-column, .split, .hero, .about-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero { min-height: auto; padding-top: clamp(18px, 3vw, 38px); padding-bottom: clamp(20px, 3.5vw, 42px); }
.eyebrow {
  display: inline;
  font-weight: 800;
  font-style: italic;
  background: linear-gradient(transparent 45%, var(--yellow) 45%);
  padding: 0 3px;
}
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -0.04em; }
h1 { font-size: clamp(34px, 5vw, 62px); font-style: italic; margin-top: 10px; }
h2 { font-size: clamp(30px, 4.8vw, 62px); font-style: italic; margin-top: 10px; }
h2.reduced-heading { font-size: clamp(28px, 3.6vw, 49px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
.lead { font-size: clamp(18px, 2vw, 25px); max-width: none; margin: 22px 0; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.button.primary { background: var(--yellow); color: var(--black); }
.button.secondary { border: 1px solid var(--black); }
.button.full { width: 100%; }
.big-button { min-height: 72px; padding: 20px 42px; font-size: 19px; min-width: 260px; }
.action-button { min-height: 60px; padding: 18px 36px; font-size: 17px; min-width: 220px; margin-top: 28px; }
.center-button { display: flex; justify-content: flex-end; margin-top: 20px; }
.section-action {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 22px;
}
.hero-action-row {
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}
.nutron-logo {
  width: min(340px, 34vw);
  height: auto;
}
.card-image {
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  overflow: hidden;
}
.hero-visual { transform: none; }
.card-image img, .card-image video { width: 100%; height: 100%; object-fit: cover; }
.video-card video { aspect-ratio: 16 / 9; background: #000; }
.hero-visual video { min-height: 420px; }

.intro-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 8px solid var(--yellow);
  border-bottom: 1px solid var(--line);
}
.intro-strip div { padding: 22px; border-right: 1px solid var(--line); }
.intro-strip div:last-child { border-right: none; }
.intro-strip strong { display: block; font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -0.04em; line-height: 1.02; }
.intro-strip span { display: block; margin-top: 8px; color: var(--muted); }

.section-copy > p:not(.eyebrow), .section-heading > p:not(.eyebrow), .cta-section p, .about-section p {
  font-size: 20px;
  color: #222;
}
.benefit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.benefit-grid article, .usecase-grid article, blockquote, .contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}
.benefit-grid p, .usecase-grid p { color: var(--muted); margin-bottom: 0; }
.tall { min-height: 520px; }

.full-video-section .wide-video video, .usecases .wide-video video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.section-heading { max-width: 920px; margin-bottom: 20px; }
.section-heading.compact { max-width: 760px; }
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.usecase-grid .symbol {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  background: var(--yellow);
  border: 2px solid var(--black);
}

.usecase-grid .symbol-circle {
  border-radius: 50%;
}

.usecase-grid .symbol-square {
  border-radius: 0;
}

.usecase-grid .symbol-line {
  height: 8px;
  margin-top: 10px;
  margin-bottom: 28px;
}

.usecase-grid .symbol-triangle {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpolygon points='3,25 25,25 25,3' fill='%23ffea00'/%3E%3Cpath d='M3 25 H25 V3 M3 25 L25 3' fill='none' stroke='%23050505' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
}

.usecase-grid .symbol-triangle::after {
  display: none !important;
  content: none !important;
}

.testimonials {
  background: var(--bg);
  color: var(--black);
  width: min(var(--max), calc(100% - 36px));
  max-width: var(--max);
  padding-left: 0;
  padding-right: 0;
}
.testimonials .eyebrow {
  color: var(--black);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
blockquote {
  margin: 0;
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
}
blockquote p {
  font-size: 20px;
  font-style: italic;
  margin-top: 0;
  color: var(--black) !important;
}
blockquote cite {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.photo-strip img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border: 1px solid var(--line); }

.cta-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.team-title { font-size: clamp(42px, 6vw, 76px); text-transform: uppercase; font-style: normal; margin: 18px 0 28px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.team-grid article { min-width: 0; }
.team-grid img { width: 100%; aspect-ratio: 1 / 1.18; object-fit: cover; border: 1px solid var(--line); }
.team-grid h3 { font-size: 18px; margin-top: 12px; letter-spacing: -.02em; }
.team-grid p { font-size: 14px; color: var(--muted); margin: 6px 0 0; text-transform: uppercase; font-weight: 700; }
.contact-card {
  border-top: none;
  position: sticky;
  top: 92px;
  align-self: start;
  margin-top: 135px;
}
.contact-card h3 { margin-bottom: 18px; font-size: 34px; }
.contact-button {
  border-radius: 14px;
  margin: 0 0 24px;
}
.social-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.social-links a { display: flex; align-items: center; justify-content: center; min-height: 74px; background: #fff9b5; border: 1px solid #f2df39; text-decoration: none; font-weight: 800; }
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 44px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-logo { width: 110px; }

@media (max-width: 1000px) {
  .two-column, .split, .hero, .about-section, .cta-section { grid-template-columns: 1fr; }
  .intro-strip { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .usecase-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: auto; }
  .tall { min-height: auto; }
  .contact-card { position: static; }
}
@media (max-width: 700px) {
  .nav { display: none; }
  .photo-strip, .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-header { position: static; }
  .brand-logo { width: 62px; }
  .intro-strip, .benefit-grid, .usecase-grid, .quote-grid { grid-template-columns: 1fr; }
  .intro-strip div { border-right: none; border-bottom: 1px solid var(--line); }
  .section { width: min(var(--max), calc(100% - 24px)); }
  h1 { font-size: 38px; }
  .lead { font-size: 20px; }
  .big-button { width: 100%; }
  .section-action,
  .hero-action-row {
    flex-direction: column;
    align-items: stretch;
  }
  .section-action .button {
    width: 100%;
  }
  .nutron-logo {
    width: min(300px, 85%);
  }
}


/* Hero stacked layout */
.hero-stacked {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.hero-stacked .hero-copy {
  max-width: 100%;
}

.hero-stacked .hero-visual {
  width: 100%;
}

.hero-stacked .hero-visual video {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-stacked .hero-action-row {
  width: 100%;
}


/* Benefits section: keep 1/3 - 2/3 layout, but align the left copy to the top */
.benefits-section {
  align-items: start;
}


/* Setup video section aligned to Multitool grid typography */
.setup-video-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.setup-video-section .hero-copy {
  max-width: 100%;
}

.setup-video-section .reduced-heading {
  font-size: clamp(28px, 3.6vw, 49px);
  line-height: .98;
  margin-top: 10px;
}

.setup-video-section .setup-text {
  font-size: 20px;
  color: #222;
  max-width: 720px;
  margin-top: 18px;
}

.setup-video-section .wide-video {
  width: 100%;
}

.setup-video-section .wide-video video {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}


.setup-video-section .setup-intro-strip {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
}


/* Use cases: place symbol cards between video and CTA */
.usecases .wide-video {
  margin-bottom: 28px;
}

.usecases .usecase-grid {
  margin-bottom: 0;
}


/* About section video: show full frame instead of cropping */
.about-section .card-image video {
  object-fit: contain;
  background: #000;
}


/* Contact page */
.contact-hero {
  padding-top: clamp(34px, 5vw, 74px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-box,
.contact-side-box {
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
}

.contact-form-box {
  border-top: 8px solid var(--yellow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;
  border: none;
  cursor: pointer;
}

.contact-side-box {
  position: sticky;
  top: 92px;
}

.contact-steps {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-steps ol {
  padding-left: 22px;
}

.contact-social-links {
  margin-top: 32px;
}

@media (max-width: 1000px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-side-box {
    position: static;
  }
}

@media (max-width: 700px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}


.social-links a img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.footer-nav{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  font-size:15px;
}

.footer-nav a{
  text-decoration:none;
}

.footer-nav .nav-cta{
  background:var(--black);
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
}

.footer-left{
  display:flex;
  align-items:center;
}

@media (max-width:700px){
  .site-footer{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* Final footer + social icon refinements */
.contact-card .social-links a {
  background: transparent;
  border: none;
  min-height: 74px;
  padding: 0;
}

.contact-card .social-links a img {
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.site-footer {
  color: var(--black);
}

.site-footer .footer-logo {
  width: 69px;
  height: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--black);
}

.footer-nav a {
  text-decoration: none;
  color: var(--black);
}

.footer-nav a:not(.nav-cta):hover {
  text-decoration: none;
}

.footer-nav .nav-cta {
  color: #fff;
  text-decoration: none;
}


/* Final anchor + eyebrow corrections */
#top {
  scroll-margin-top: 110px;
}

/* Keep all eyebrow labels visually consistent, including About CINETICA */
.eyebrow {
  font-size: 16px;
  line-height: 1.2;
}

.about-section .eyebrow,
.section-copy > .eyebrow {
  font-size: 16px !important;
  line-height: 1.2;
}


/* === FINAL GLOBAL FIXES: navigation, legal spacing, contact page === */

#top,
section[id] {
  scroll-margin-top: 120px;
}

@media (max-width: 700px) {
  .site-header {
    position: sticky;
    top: 0;
    align-items: center;
    gap: 14px;
  }

  .nav {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .nav a {
    text-decoration: none;
  }

  .nav-cta {
    padding: 8px 12px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: sticky;
  }
}

.legal-page {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 78px) 0;
}

.legal-wrap {
  max-width: 920px;
}

.legal-intro {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.legal-intro h1 {
  font-size: clamp(38px, 5vw, 68px);
  font-style: italic;
  margin: 12px 0 22px;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  margin-bottom: 14px;
}

.legal-section h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  margin: 24px 0 10px;
}

.legal-page p {
  font-size: 18px;
  line-height: 1.58;
  color: #222;
  margin: 0 0 14px;
}

@media (max-width: 700px) {
  .legal-page {
    width: min(var(--max), calc(100% - 48px));
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .legal-intro h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.98;
  }

  .legal-section h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.02;
  }

  .legal-page p {
    font-size: 20px;
    line-height: 1.58;
  }
}

.contact-layout-single {
  display: block;
}

.contact-layout-single .contact-form-box {
  max-width: 920px;
  margin: 0 auto;
}

.contact-layout-single .contact-button {
  max-width: 360px;
  justify-self: end;
}

.contact-card .social-links a {
  background: transparent !important;
  border: none !important;
}

.contact-card .social-links a img {
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.site-footer .footer-logo {
  width: 69px !important;
  height: auto !important;
}

.footer-nav a {
  text-decoration: none !important;
}

.footer-nav .nav-cta {
  color: #fff !important;
}


/* === Eyebrow size fix: Team / Let's talk hands-on === */
/* The generic rule `.cta-section p` makes the team eyebrow larger.
   This brings it back to the same size as the other eyebrow labels. */
.cta-section p.eyebrow,
.team-block .eyebrow {
  font-size: 16px !important;
  line-height: 1.2 !important;
  color: var(--black) !important;
}


/* Cine Gear 2026 landing/contact page */
.cg-note {
  font-size: 18px;
  color: #222;
}

.contact-layout-single {
  display: block;
}

.contact-layout-single .contact-form-box {
  max-width: 920px;
  margin: 0 auto;
}

.contact-layout-single .contact-button {
  max-width: 360px;
  justify-self: end;
}

/* Cine Gear PHP form status + spam honeypot */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-message {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.form-message h3 {
  margin: 0 0 8px;
}

.form-message p {
  margin: 0;
  color: #222;
}

.form-message-success {
  border-top: 8px solid var(--yellow);
}

.form-message-error {
  border-top: 8px solid var(--black);
}

