:root {
  --radius: 0.5rem;

  --background: oklch(0.985 0.008 80);
  --foreground: oklch(0.22 0.04 215);

  --surface: oklch(0.965 0.018 75);
  --surface-elevated: #ffffff;

  --card: #ffffff;
  --card-foreground: oklch(0.22 0.04 215);

  --primary: oklch(0.36 0.045 215);
  --primary-foreground: oklch(0.985 0.008 80);

  --secondary: oklch(0.94 0.025 75);
  --secondary-foreground: oklch(0.28 0.045 215);

  --muted: oklch(0.95 0.018 80);
  --muted-foreground: oklch(0.48 0.025 215);

  --accent: oklch(0.92 0.04 75);
  --accent-foreground: oklch(0.28 0.045 215);

  --ember: oklch(0.68 0.2 45);
  --ember-glow: oklch(0.76 0.17 60);

  --amber: oklch(0.8 0.15 80);
  --amber-soft: oklch(0.88 0.1 80);

  --peach: oklch(0.9 0.06 65);

  --steel: oklch(0.45 0.04 215);
  --steel-light: oklch(0.65 0.025 215);

  --border: oklch(0.89 0.02 75);
  --input: oklch(0.89 0.02 75);
  --ring: oklch(0.68 0.2 45);

  --gradient-hero: linear-gradient(135deg, oklch(0.32 0.045 215) 0%, oklch(0.4 0.05 210) 50%, oklch(0.5 0.08 60) 100%);
  --gradient-ember: linear-gradient(135deg, oklch(0.68 0.2 45), oklch(0.78 0.17 70));
  --gradient-amber: linear-gradient(135deg, oklch(0.78 0.17 65), oklch(0.85 0.13 85));
  --gradient-banner: conic-gradient(from 215deg at 35% 45%, oklch(0.7 0.2 45) 0deg, oklch(0.82 0.16 75) 90deg, oklch(0.88 0.1 75) 150deg, oklch(0.36 0.045 215) 280deg, oklch(0.7 0.2 45) 360deg);

  --shadow-soft: 0 1px 2px oklch(0.22 0.04 215 / 0.05), 0 4px 12px oklch(0.22 0.04 215 / 0.05);
  --shadow-elevated: 0 8px 24px oklch(0.22 0.04 215 / 0.1), 0 2px 6px oklch(0.22 0.04 215 / 0.05);
  --shadow-ember: 0 8px 32px oklch(0.68 0.2 45 / 0.3);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

ul {
  list-style: none;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 600;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2.5rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: .625rem;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  font-weight: 700;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: var(--gradient-ember); */
  opacity: 0;
  transition: opacity .3s;
}

.brand:hover .brand-mark::before {
  opacity: 1;
}

.brand-mark span {
  position: relative;
  z-index: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--ember);
  letter-spacing: -0.01em;
}



.brand-sub {
  font-family: var(--font-mono);
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ember-glow);
}

.nav {
  display: none;
  align-items: center;
  gap: .25rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  padding: .5rem .75rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--ember-glow);
  transition: background .2s, color .2s;
}

.nav a:hover {
  background: var(--accent);
  color: var(--foreground);
}

.nav a.active {
  background: var(--accent);
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-ember {
  background: var(--gradient-ember);
  color: #fff;
  box-shadow: var(--shadow-ember);
}

.btn-ember:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
  background: color-mix(in oklab, var(--primary) 90%, black);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-cta-header {
  display: none;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  background: var(--gradient-ember);
  color: var(--primary-foreground);
  font-size: .875rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .btn-cta-header {
    display: inline-flex;
  }
}

.btn-cta-header:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
}

.menu-toggle {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--radius);
  color: var(--foreground);
}

.menu-toggle:hover {
  background: var(--accent);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.5rem;
}

.mobile-nav a {
  padding: .625rem .75rem;
  border-radius: var(--radius);
  font-size: .875rem;
  color: var(--muted-foreground);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--accent);
  color: var(--foreground);
}

.mobile-nav .btn-mobile {
  margin-top: .5rem;
  padding: .625rem 1rem;
  text-align: center;
  background: var(--gradient-ember);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .875rem;
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ember);
}

.section-label::before {
  content: "";
  height: 1px;
  width: 2rem;
  background: var(--ember);
  display: inline-block;
}

.section-label.on-dark {
  color: var(--ember);
}


/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.18 0.04 215 / 0.55);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, var(--background));
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem 8rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 8rem 2.5rem 10rem;
  }
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.75rem, 5vw + 1rem, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 56rem;
}

.hero p.lead {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  backdrop-filter: blur(8px);
}

.hero-pill .dot {
  height: .375rem;
  width: .375rem;
  border-radius: 9999px;
  background: var(--ember);
  box-shadow: var(--shadow-ember);
}

.text-gradient-ember {
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
}

.hero-stats dd {
  margin-top: .25rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

/* Section base */
.section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  background: var(--background);
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section.bg-surface {
  background: var(--surface);
}

.section.bg-peach {
  background: var(--peach);
}

.section.bg-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-top: 0;
}

.section.gradient-hero-bg {
  background: var(--gradient-hero);
  color: #fff;
  border: 0;
  position: relative;
  overflow: hidden;
}

.section.gradient-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.section.gradient-hero-bg .container {
  position: relative;
}

/* Headings */
.h-eyebrow {
  display: block;
}

h2.section-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.section.gradient-hero-bg h1,
.section.gradient-hero-bg h2 {
  color: #fff;
}

h1.page-title {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Two-col header layout */
.two-col-end {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .two-col-end {
    grid-template-columns: 1fr 2fr;
    align-items: end;
  }
}

.lead-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .lead-text {
    font-size: 1.125rem;
  }
}

/* Offerings grid */
.offer-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-card {
  background: var(--card);
  padding: 2rem;
  transition: background .2s;
}

.offer-card:hover {
  background: var(--surface);
}
.s-img {
  margin-bottom: 15px;
  height: 200px;
  width: 100%;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.icon-tile {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--primary);
  transition: background .2s, color .2s;
}

.icon-tiles {
  display: grid;
  place-items: center;
  height: 200px;
  width: 100%;
  border-radius: var(--radius);
  color: var(--primary);
  transition: background .2s, color .2s;
}

.icon-tile.ember {
  background: var(--gradient-ember);
  color: #fff;
}

.offer-card:hover .icon-tile {
  background: var(--gradient-ember);
  color: #fff;
}

.offer-card h3 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.offer-card p {
  margin-top: .5rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Vision/Mission */
.vm-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .vm-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vm-card {
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  box-shadow: var(--shadow-soft);
}

.vm-card.dark {
  background: var(--gradient-hero);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-elevated);
}

.vm-card h3 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 600;
}

.vm-card p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.vm-card.dark h3 {
  color: #fff;
}

.vm-card.dark p {
  color: rgba(255, 255, 255, 0.85);
}

.vm-card.dark .quote {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: .875rem;
  font-style: italic;
  color: var(--amber);
}

/* Industry showcase */
.industry-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  overflow: hidden;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .2s;
}

.industry-card:hover {
  box-shadow: var(--shadow-elevated);
}

.industry-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--primary);
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.industry-card:hover .industry-image img {
  transform: scale(1.05);
}

.industry-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.industry-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: .25rem .625rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  backdrop-filter: blur(6px);
}

.industry-body {
  padding: 1.5rem;
}

.industry-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.industry-body p {
  margin-top: .5rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Historian split */
.split {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split .img-wrap {
  position: relative;
}

.split .img-wrap::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border-radius: 1rem;
  background: var(--gradient-ember);
  opacity: 0.25;
  filter: blur(40px);
}

.split .img-wrap .frame {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--primary);
  box-shadow: var(--shadow-elevated);
}

.split .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.feature-list .feat-icon {
  display: grid;
  place-items: center;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list span.text {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--foreground);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ember);
}

.link-arrow svg {
  transition: transform .2s;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* CTA primary */
.cta-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-block {
    grid-template-columns: 2fr 1fr;
  }
}

.cta-block h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-block p {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}

@media (min-width: 1024px) {
  .cta-actions {
    align-items: flex-end;
  }
}

.cta-actions a.subtle {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions a.subtle:hover {
  color: #fff;
}

/* Footer */

.logo-text-container {
  padding: 0 0 10px 0;
  display: block;
  /* align-items: center; */
  margin-bottom: 1.5rem;
}

.text-logo {
  height: 50px;
  width: auto;
  display: block;
  max-width: 100%;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (max-width: 600px) {
  .brand-logo {
    height: 35px;
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 4rem 2.5rem;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer p.about {
  display: block;
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--muted-foreground);

}

.footer h4 {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.footer ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  font-size: .875rem;
}

.footer ul li {
  color: var(--foreground);
}

.footer ul a:hover {
  color: var(--ember);
}

.footer ul li.icon-row {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
}

.footer ul li.icon-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ember);
}

.footer-bar {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bar .mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* PRODUCTS PAGE */
.product-stack {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .product-stack {
    gap: 6rem;
  }
}

.product-row {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .product-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.product-row.flip .product-card-art {
  order: 2;
}

.product-card-art {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--gradient-hero);
  padding: 2.5rem;
  color: #fff;
  box-shadow: var(--shadow-elevated);
}

.product-card-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.product-card-art::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  background: var(--gradient-ember);
  opacity: 0.3;
  filter: blur(40px);
}

.product-card-art>.inner {
  position: relative;
}

.product-code {
  font-family: var(--font-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ember);
}

.product-name {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-tag {
  margin-top: .75rem;
  font-family: var(--font-mono);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
}

.product-card-art hr {
  margin-top: 2.5rem;
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
}

.feat-mini-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .625rem 1.5rem;
}

@media (min-width: 640px) {
  .feat-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feat-mini-grid .fm {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.85);
}

.feat-mini-grid .fm svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--amber);
}

.product-body h2 {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.product-body p.desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .product-body p.desc {
    font-size: 1.125rem;
  }
}

.feat-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .625rem;
}

@media (min-width: 640px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feat-grid li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--foreground);
}

.feat-grid li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ember);
}

/* DataSentinel modules */
.module-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: .75rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .module-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.module-card {
  background: var(--card);
  padding: 1.75rem;
  transition: background .2s;
}

.module-card:hover {
  background: var(--accent);
}

.module-card:hover .icon-tile {
  color: #fff;
}

.module-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.module-card ul {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .375rem;
  font-size: .875rem;
  color: var(--muted-foreground);
}

.module-card ul li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.module-card ul li::before {
  content: "";
  margin-top: .55rem;
  height: 4px;
  width: 4px;
  border-radius: 9999px;
  background: var(--ember);
  flex-shrink: 0;
}



/* Specs */
.specs-grid {
  margin-top: 4rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.specs-grid .img {
  overflow: hidden;
  border-radius: .75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
}

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

.spec-stats dt {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--ember);
}

.spec-stats dd {
  margin-top: .25rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.spec-list {
  margin-top: 2rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.spec-list .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .875rem 1.25rem;
  border-top: 1px solid var(--border);
}

.spec-list .row:first-child {
  border-top: 0;
}

.spec-list dt {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.spec-list dd {
  text-align: right;
  font-size: .875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* About values */
.values-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: .75rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.values-grid .v {
  background: var(--card);
  padding: 2rem;
}

.values-grid h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.values-grid p {
  margin-top: .75rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* .v:hover{
  background: var(--surface);
} */

.about-quote {
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 4px solid var(--ember);
  background: color-mix(in oklab, var(--peach) 60%, transparent);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--foreground);
  border-radius: .5rem;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
}

.mission-text {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
}

@media (min-width: 1024px) {
  .mission-text {
    grid-template-columns: 1fr 1fr;
    font-size: 1.125rem;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.contact-card .icon {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--ember);
  flex-shrink: 0;
}

.contact-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.contact-card .value {
  margin-top: .25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-card a.value:hover {
  color: var(--ember);
}

.contact-form {
  padding: 2rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1024px) {
  .contact-form {
    padding: 2.5rem;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  margin-top: 1.25rem;
  display: block;
}

.field:first-child {
  margin-top: 0;
}

.form-row .field {
  margin-top: 0;
}

.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
  display: block;
}

.field .req {
  margin-left: .25rem;
  color: var(--ember);
}

.field input,
.field select,
.field textarea {
  margin-top: .5rem;
  display: block;
  width: 100%;
  padding: .625rem .75rem;
  font-size: .875rem;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background: var(--background);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ember) 20%, transparent);
}

.field textarea {
  resize: none;
}

.form-disclaimer {
  margin-top: .75rem;
  font-size: .75rem;
  color: var(--muted-foreground);
}

/* Centered CTA section */
.center-cta {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.center-cta h2 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.center-cta p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.center-cta .btn {
  margin-top: 2rem;
}

/* About bottom CTA */
.about-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .about-cta {
    flex-direction: row;
    align-items: center;
    padding: 0 2.5rem;
  }
}

.about-cta h2 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-cta p {
  margin-top: .75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Utility */
.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-xs {
  width: .875rem;
  height: .875rem;
}

/* ---------- Expertise ---------- */
.expertise {
  background: var(--background);
}

.expertise-grid {
  margin-top: 56px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.exp-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}

.exp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: color-mix(in oklab, var(--ember) 45%, var(--border));
}

.exp-card:hover::before {
  transform: scaleX(1);
}

.exp-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--peach), var(--amber-soft));
  color: oklch(0.4 0.12 45);
  transition: transform .35s ease;
}

.exp-card:hover .exp-icon {
  transform: rotate(-6deg) scale(1.05);
}

.exp-card h3 {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 600;
}

.exp-card p {
  margin-top: 8px;
  color: var(--muted-fg);
  font-size: 14px;
}

.exp-points {
  list-style: none;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--muted-fg);
  font-weight: 500;
}

.exp-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--ember);
}

/* ---------- References ---------- */
.references {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.references::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(0.36 0.045 215 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.36 0.045 215 / 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}

.references>.container {
  position: relative;
}

.logo-wall {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.logo {
  background: var(--card);
  height: 96px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--steel);
  transition: background .3s ease, color .3s ease;
}

.logo:hover {
  background: var(--peach);
  color: var(--ember);
}

.ref-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ref-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}

.ref-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gradient-ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s ease;
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: color-mix(in oklab, var(--ember) 40%, var(--border));
}

.ref-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ref-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.ref-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.ref-logo.lg-1 {
  background: linear-gradient(135deg, #0a4d68, #088395);
}

.ref-logo.lg-2 {
  background: linear-gradient(135deg, #b8001f, #ec4d37);
}

.ref-logo.lg-3 {
  background: linear-gradient(135deg, #1f2937, #4b5563);
}

.ref-logo.lg-4 {
  background: linear-gradient(135deg, #065f46, #10b981);
}

.ref-logo.lg-5 {
  background: linear-gradient(135deg, #5b21b6, #8b5cf6);
}

.ref-logo.lg-6 {
  background: linear-gradient(135deg, #c2410c, #f59e0b);
}

.ref-company {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 16px;
  color: var(--foreground);
}

.ref-industry {
  font-size: 12px;
  color: var(--muted-fg);
  margin-top: 2px;
}

.ref-product-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
}

.ref-product {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
}

.ref-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ref-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--ember) 8%, transparent);
  color: oklch(0.4 0.12 45);
  border: 1px solid color-mix(in oklab, var(--ember) 20%, transparent);
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  section {
    padding: 72px 0;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }
}

/* ---------- Entrance animation ---------- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exp-card,
.ref-card {
  animation: fade-up .6s ease-out both;
}

.exp-card:nth-child(2),
.ref-card:nth-child(2) {
  animation-delay: .08s;
}

.exp-card:nth-child(3),
.ref-card:nth-child(3) {
  animation-delay: .16s;
}

.exp-card:nth-child(4),
.ref-card:nth-child(4) {
  animation-delay: .24s;
}

.ref-card:nth-child(5) {
  animation-delay: .32s;
}

.ref-card:nth-child(6) {
  animation-delay: .4s;
}

@media (max-width: 1024px) {
  .ref-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ref-grid {
    grid-template-columns: 1fr;
  }
}

/* Section */
.image-section {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

/* Image Container */
.image-card {
  width: 100%;
  max-width: 650px;

  border-radius: 18px;
  overflow: hidden;

  background: #fff;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover Effect */
.image-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive Image */
.image-card img {
  width: 100%;
  height: auto;

  display: block;

  aspect-ratio: 650 / 435;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .image-card {
    border-radius: 14px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  body {
    padding: 40px 14px 20px;
  }

  .image-card {
    border-radius: 12px;
  }
}