/* Self-hosted brand fonts — same files/subsets as the NobleTech Solutions site (@fontsource-variable) */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(assets/fonts/inter-latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Manrope Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(assets/fonts/manrope-latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ============================================================
   Everything below this line is copied verbatim (selectors and
   values) from the NobleTech Solutions website's app/globals.css
   — the same tokens, header, hero, card, and footer system used
   on nobletechit.com — so this portal renders as the same design
   system, not an approximation of it.
   ============================================================ */

:root {
  --ink-950: #07111f;
  --navy-900: #0b1f3a;
  --blue-700: #1554c0;
  --blue-600: #1769e0;
  --cyan-400: #33c7d8;
  --slate-700: #334155;
  --slate-500: #58687d;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --cloud-50: #f8fafc;
  --white: #ffffff;
  --font-heading: "Manrope Variable", "Manrope", sans-serif;
  --font-body: "Inter Variable", "Inter", sans-serif;
  --container: 1200px;
  --container-wide: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius-control: 8px;
  --radius-card: 12px;
  --radius-featured: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-950);
  background: var(--cloud-50);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
svg { display: block; width: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(var(--container), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-control);
  color: var(--white);
  background: var(--blue-700);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--cyan-400); outline-offset: 3px; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(226, 232, 240, 0.14);
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  position: fixed;
  border-bottom-color: rgba(148, 163, 184, .22);
  background: rgba(7, 17, 31, .95);
  box-shadow: 0 10px 32px rgba(7, 17, 31, .16);
  backdrop-filter: blur(22px);
}
.header-inner { width: min(var(--container-wide), calc(100% - (var(--gutter) * 2))); min-height: 82px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { display: block; width: 210px; height: auto; object-fit: contain; }
.portal-tag { margin-left: auto; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, 0.22); color: #7dd3fc; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--white); background: var(--blue-600); }
.button-primary:hover { background: var(--blue-700); }
.button-inverse { color: var(--ink-950); background: var(--white); }
.button-inverse:hover { background: #eaf2ff; }
.button.is-disabled { color: var(--white); background: var(--slate-500); border-color: var(--slate-500); cursor: not-allowed; transform: none; }
.button.is-disabled:hover { background: var(--slate-500); transform: none; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--blue-700); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.eyebrow-inverse { color: #7dd3fc; }

/* Interior hero (the pattern used on /about/, /contact/, /services/) */
.interior-hero {
  position: relative;
  overflow: hidden;
  padding: 156px 0 92px;
  color: var(--white);
  background: radial-gradient(circle at 78% 42%, rgba(23, 105, 224, 0.2), transparent 34%), linear-gradient(135deg, var(--ink-950), var(--navy-900));
}
.interior-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, black);
}
.interior-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(60px, 10vw, 150px); align-items: center; }
.interior-hero h1 { max-width: 720px; margin: 0; font-family: var(--font-heading); font-size: clamp(42px, 6vw, 64px); font-weight: 620; letter-spacing: -.048em; line-height: 1.04; text-wrap: balance; }
.interior-hero-grid > div:first-child > p:not(.eyebrow) { max-width: 600px; margin: 22px 0 0; color: #cbd5e1; font-size: clamp(17px, 1.6vw, 19px); line-height: 1.6; }

.quick-support-panel { margin-top: 32px; }
.quick-support-label { margin: 0 0 6px; font-family: var(--font-heading); font-size: 18px; font-weight: 650; letter-spacing: -.01em; color: var(--white); }
.quick-support-copy { max-width: 480px; margin: 0 0 22px; color: #cbd5e1; font-size: 15px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.download-status { margin: 16px 0 0; max-width: 480px; color: #94a3b8; font-size: 13px; line-height: 1.55; }

.interior-hero-aside, .contact-hero-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-featured);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.interior-hero-aside span, .contact-hero-card > span { color: #7dd3fc; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.interior-hero-aside strong { display: block; font: 620 27px/1.3 var(--font-heading); letter-spacing: -.03em; }
.interior-hero-aside .icon-badge { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(125, 211, 252, .26); border-radius: 10px; color: #7dd3fc; background: rgba(255, 255, 255, .06); }
.interior-hero-aside .icon-badge svg { width: 22px; height: 22px; }
.interior-hero-aside p { margin: 0; color: #cbd5e1; font-size: 14px; line-height: 1.65; }

/* Process / step pattern (the homepage "How we work" component) */
.process-section { padding: clamp(72px, 9vw, 104px) 0; background: var(--white); border-top: 1px solid var(--slate-200); }
.process-heading-row { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(48px, 9vw, 130px); align-items: end; margin-bottom: 48px; }
.process-heading-row h2 { max-width: 780px; margin: 0; font: 620 clamp(32px, 3.8vw, 46px)/1.1 var(--font-heading); letter-spacing: -.04em; text-wrap: balance; }
.process-heading-row > p { margin: 0 0 4px; color: var(--slate-700); font-size: 16px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.process-step { position: relative; padding-right: 38px; }
.process-step:last-child { padding-right: 0; }
.process-marker { display: flex; align-items: center; margin-bottom: 28px; }
.process-marker span { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid #b9c8dc; border-radius: 50%; color: var(--blue-700); background: var(--white); font: 700 17px/1 var(--font-heading); }
.process-marker i { width: 100%; height: 1px; background: var(--slate-200); }
.process-step:last-child .process-marker i { display: none; }
.process-step h3 { margin: 0; font: 620 19px/1.3 var(--font-heading); letter-spacing: -.025em; }
.process-step p { margin: 10px 0 0; color: var(--slate-500); font-size: 14px; line-height: 1.65; }

/* Section intro + three-card pattern (the About page "Principles" component) */
.about-values { padding: clamp(72px, 9vw, 104px) 0; background: var(--cloud-50); }
.directory-intro { max-width: 780px; margin-bottom: 44px; }
.directory-intro h2 { margin: 0; font: 620 clamp(30px, 3.6vw, 42px)/1.15 var(--font-heading); letter-spacing: -.035em; text-wrap: balance; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.values-grid article { min-height: 0; padding: 28px; border-top: 2px solid var(--blue-600); background: var(--white); }
.values-grid h3 { margin: 0; font: 620 20px/1.25 var(--font-heading); letter-spacing: -.026em; }
.values-grid p { margin: 14px 0 0; color: var(--slate-700); font-size: 14px; line-height: 1.6; }

/* Interior CTA panel (the dark closing band used on every interior page) */
.interior-cta { padding: 0 0 clamp(72px, 9vw, 104px); background: var(--cloud-50); }
.interior-cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(38px, 5vw, 56px); border-radius: var(--radius-featured); color: var(--white); background: linear-gradient(135deg, var(--ink-950), var(--navy-900)); }
.interior-cta-panel h2 { max-width: 620px; margin: 0; font: 620 clamp(28px, 3.4vw, 38px)/1.15 var(--font-heading); letter-spacing: -.036em; }
.interior-cta-panel p { max-width: 480px; margin: 0; color: #cbd5e1; font-size: 16px; line-height: 1.6; }

/* Footer */
.site-footer { color: var(--white); background: var(--ink-950); }
.footer-brand { padding: 56px 0 0; }
.footer-brand .brand img { width: 200px; }
.footer-brand > p { max-width: 460px; margin: 22px 0 0; color: #94a3b8; font-size: 13px; line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; padding-bottom: 30px; margin-top: 40px; border-top: 1px solid rgba(148, 163, 184, .16); color: #64748b; font-size: 11px; }
.footer-bottom p { margin: 0; }

@media (max-width: 1050px) {
  .interior-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-heading-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

@media (max-width: 820px) {
  .interior-hero { padding: 128px 0 64px; }
  .interior-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .process-step { padding-right: 0; }
  .process-marker i { display: none; }
  .interior-cta-panel { flex-direction: column; align-items: flex-start; gap: 22px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .header-inner { min-height: 74px; }
  .header-inner > .brand img { width: 150px; }
  .portal-tag { font-size: 10px; padding-left: 12px; }
  .interior-hero { padding: 110px 0 52px; }
  .interior-hero h1 { font-size: clamp(34px, 11vw, 42px); }
  .hero-actions .button { width: 100%; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { display: grid; grid-template-columns: 44px 1fr; gap: 0 16px; padding: 0 0 30px; }
  .process-step:last-child { padding-bottom: 0; }
  .process-marker { grid-row: 1 / 3; flex-direction: column; height: 100%; margin: 0; }
  .process-marker i { display: block; width: 1px; height: 100%; min-height: 40px; }
  .process-step:last-child .process-marker i { display: none; }
  .process-step h3 { padding-top: 8px; }
  .process-step p { grid-column: 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
