/* ==========================================================================
   Sigma Laser Tech, shared styles for inner content pages
   (about / products / contact / careers). Loaded after tokens.css.
   ========================================================================== */

/* ----- Inner page hero band ----- */
.page-hero {
  position: relative;
  padding: 150px 0 64px;
  background: var(--ink-900);
  border-bottom: 1px solid var(--ink-600);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 78% 10%, rgba(244,123,32,0.10), transparent 60%);
  pointer-events: none;
}
.page-hero .inner { position: relative; max-width: 880px; }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  color: var(--white);
  margin: 18px 0 18px;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--sigma-orange); }
.page-hero p {
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  color: var(--steel-300);
  max-width: 64ch;
  margin: 0;
}
.breadcrumb {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-500);
}
.breadcrumb a { color: var(--steel-400); }
.breadcrumb a:hover { color: var(--sigma-orange); }

/* ----- Section heading kit (shared with home) ----- */
.sec-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.sec-head h2 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: var(--t-hero);
  line-height: 1;
  color: var(--white);
  margin: 16px 0 0;
}
.sec-head .lede { max-width: 52ch; color: var(--steel-300); font-size: 1.05rem; }

/* ----- Prose ----- */
.prose { color: var(--steel-200); font-size: 1.02rem; line-height: 1.7; max-width: 70ch; }
.prose h3 {
  font-family: var(--f-display); font-weight: 600; color: var(--white);
  font-size: 1.5rem; letter-spacing: -0.02em; margin: 36px 0 12px;
}
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; color: var(--steel-300); }
.prose b, .prose strong { color: var(--white); font-weight: 600; }

/* ----- Two-column content ----- */
.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ----- Generic feature/value cards ----- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.feat-card {
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}
.feat-card:hover { transform: translateY(-5px); border-color: var(--sigma-orange-deep); background: var(--ink-700); }
.feat-card .k {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sigma-orange); margin-bottom: 14px;
}
.feat-card h4 {
  font-family: var(--f-display); font-weight: 600; color: var(--white);
  font-size: 1.2rem; letter-spacing: -0.015em; margin: 0 0 8px; line-height: 1.15;
}
.feat-card p { color: var(--steel-300); font-size: 0.94rem; margin: 0; }

/* ----- Fact table (company factsheet) ----- */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-mono);
  font-size: 0.86rem;
}
.fact-table tr { border-bottom: 1px solid var(--ink-600); }
.fact-table td { padding: 14px 12px; vertical-align: top; }
.fact-table td:first-child {
  color: var(--steel-400); width: 42%;
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.fact-table td:last-child { color: var(--white); }

/* ----- Product detail rows ----- */
.product-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--ink-600);
}
.product-row:nth-child(even) .product-media { order: -1; }
.product-row .product-media img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--ink-600);
  aspect-ratio: 4 / 3; object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.product-row .cat {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sigma-orange);
}
.product-row h2 {
  font-family: var(--f-display); font-weight: 700; color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.03em; margin: 8px 0 16px; line-height: 1.02;
}

/* ----- Forms ----- */
.form-card {
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--steel-400);
}
.form-field label .req { color: var(--sigma-orange); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--ink-900);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sigma-orange);
  box-shadow: 0 0 0 3px rgba(244,123,32,0.18);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--steel-500); }
.form-note { font-family: var(--f-mono); font-size: 0.72rem; color: var(--steel-500); margin-top: 4px; }
.form-status {
  margin-top: 16px; padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(76,193,138,0.12); border: 1px solid rgba(76,193,138,0.4); color: #7fe0b0; }
.form-status.err { background: rgba(233,75,42,0.12); border: 1px solid rgba(233,75,42,0.4); color: #ff8a6e; }

/* ----- Contact info list ----- */
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info .blk h4 {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sigma-orange); margin: 0 0 10px;
}
.contact-info .blk p, .contact-info .blk a {
  font-family: var(--f-mono); font-size: 0.9rem; color: var(--steel-200);
  line-height: 1.7; margin: 0; display: block;
}
.contact-info .blk a:hover { color: var(--sigma-orange); }
.map-embed {
  width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--ink-600);
  border-radius: var(--radius-lg); overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) hue-rotate(180deg) contrast(0.9); }

/* ----- Footer hot link animation ----- */
@keyframes org-hot-link {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.made.mono b {
  color: var(--sigma-orange);
  position: relative;
  display: inline-block;
  transition: color 0.5s ease-out;
}

.made.mono b::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  background-color: var(--sigma-orange);
  width: 0;
}

.made.mono b:hover {
  color: white;
}

.made.mono b:hover::after {
  animation: org-hot-link 0.5s ease-out forwards;
}

/* ----- Responsive ----- */
@media (max-width: 1000px) {
  .twocol { grid-template-columns: 1fr; gap: 36px; }
  .product-row { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .product-row:nth-child(even) .product-media { order: 0; }
  .sec-head { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
