:root {
  /* Brand colors from logo */
  --red:        #D42B2B;   /* orbital rings - CTA, accents, labels */
  --red-lt:     #E85555;   /* hover red */
  --red-tint:   #FEF2F0;   /* red badge backgrounds */
  --red-border: rgba(212,43,43,.18);

  --blue:       #1A4FC4;   /* infinity symbol - data, panels, links */
  --blue-lt:    #3B6FE8;   /* hover blue */
  --blue-tint:  #EEF4FF;   /* blue card backgrounds */
  --blue-border:rgba(26,79,196,.18);

  --dark:       #0F172A;   /* deep space - headings, stats strip */
  --dark-mid:   #1E293B;   /* secondary dark */
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;   /* alt section background */

  --text:       #0F172A;   /* primary text */
  --text-2:     #475569;   /* secondary text */
  --text-3:     #94A3B8;   /* muted / labels */

  --green:      #16A34A;   /* satisfaction / success */
  --green-tint: #F0FDF4;

  --border:     #E2E8F0;
  --border-lt:  #F1F5F9;

  --grad-rb: linear-gradient(90deg, var(--red), var(--blue));

  --rad:    6px;
  --rad-lg: 12px;
  --rad-xl: 16px;

  --shadow:    0 2px 16px rgba(15,23,42,.07);
  --shadow-lg: 0 8px 32px rgba(15,23,42,.12);
  --shadow-hover: 0 16px 48px rgba(15,23,42,.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #FFFFFF;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.05;
  letter-spacing: -.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .s-label {
  justify-content: center;
}

.section-head.center .s-desc {
  margin-right: auto;
  margin-left: auto;
}

.s-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--red);
  border-radius: 1px;
}

.s-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.s-desc {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.75;
}

.btn-red {
  background: var(--red);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--rad);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  cursor: pointer;
}

.btn-red:hover {
  background: var(--red-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,43,43,.28);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  padding: 10px 24px;
  border-radius: var(--rad);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color .2s, background .2s, transform .15s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-tint);
  transform: translateY(-2px);
}

nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(15,23,42,.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-logo-name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
}

.nav-logo-sub {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-3);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 5px;
  transition: color .2s, background .2s;
}

.nav-links a:hover {
  color: var(--dark);
  background: var(--off-white);
}

.nav-links a.active {
  color: var(--red);
  background: var(--red-tint);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--rad) !important;
  transition: background .2s, transform .15s !important;
}

.nav-cta:hover {
  background: var(--red-lt) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

.mob-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}

.mob-nav.open {
  display: block;
}

.mob-nav a {
  display: block;
  padding: 10px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-lt);
  transition: color .2s;
}

.mob-nav a:hover,
.mob-nav a.active {
  color: var(--red);
}

.hero-wrap {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0.98) 25%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.35) 72%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.hero-orbital-bg {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red-tint);
  border: 1px solid var(--red-border);
  color: #B91C1C;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.75);
  }
}

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: .97;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}

.hero-h1 .red {
  color: var(--red);
  display: block;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
  padding-left: 14px;
  border-left: 2px solid var(--red-border);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-3);
  background: var(--off-white);
  border: .5px solid var(--border);
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.data-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  position: relative;
  z-index: 1;
}

.data-panel-head {
  background: var(--blue);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.data-panel-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,.55);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.data-panel-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,.8);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.data-panel-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
}

.data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border-lt);
  gap: 10px;
}

.data-row:last-of-type {
  border-bottom: none;
}

.data-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.data-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-align: right;
}

.data-val.red {
  color: var(--red);
}

.data-val.blue {
  color: var(--blue);
}

.data-val.green {
  color: var(--green);
}

.data-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.data-bar-track {
  flex: 1;
  height: 3px;
  background: var(--blue-tint);
  border-radius: 2px;
  overflow: hidden;
}

.data-bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 1.5s ease;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 8px;
}

.mini-stat {
  background: rgba(254, 242, 240, 0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 43, 43, 0.15);
  border-radius: var(--rad);
  padding: 10px;
  text-align: center;
}

.mini-stat.blue {
  background: rgba(238, 244, 255, 0.90);
  border-color: rgba(26, 79, 196, 0.15);
}

.mini-stat-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.mini-stat.blue .mini-stat-n {
  color: var(--blue);
}

.mini-stat-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: var(--text-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.stats-strip {
  background: var(--dark);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 79px,
    rgba(212,43,43,.06) 79px, rgba(212,43,43,.06) 80px
  );
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
  z-index: 1;
}

.strip-stat {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
}

.strip-stat:last-child {
  border-right: none;
}

.strip-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.strip-sfx {
  color: var(--red);
}

.strip-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,.35);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.d-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.d-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.d-card-bar {
  height: 4px;
  background: var(--grad-rb);
}

.d-card-body {
  padding: 1.5rem;
}

.d-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.d-icon {
  width: 44px;
  height: 44px;
  background: var(--red-tint);
  border: 1px solid var(--red-border);
  border-radius: var(--rad);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background .25s, border-color .25s, color .25s;
}

.d-icon svg {
  transition: stroke .25s ease, color .25s ease;
}

.d-card:hover .d-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.d-card:hover .d-icon svg {
  stroke: #fff;
}

.d-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}

.d-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.p-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.p-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.p-card-media {
  aspect-ratio: 2 / 1;
  background: var(--off-white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
}

.p-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease, filter .35s ease;
}

.p-card:hover .p-card-media img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.p-card-top {
  background: var(--dark);
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.p-card-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-rb);
}

.p-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: .75rem;
}

.p-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
}

.p-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.p-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.p-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: .75rem;
}

.p-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  margin-bottom: 1rem;
}

.p-tag {
  background: var(--blue-tint);
  color: var(--blue);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 2px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid var(--blue-border);
}

.p-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.p-link:hover {
  gap: 8px;
}

.r-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}

.r-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.r-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--rad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.r-card.logo-card:hover .r-icon {
  background: #ffffff !important;
  border-color: #E2E8F0 !important;
}

.r-card.logo-card:hover .r-icon svg {
  stroke: unset !important;
}

.r-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.r-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

.r-quote {
  background: var(--dark);
  border-radius: var(--rad-lg);
  padding: 1.75rem;
  margin-top: 1.25rem;
  position: relative;
  overflow: hidden;
}

.r-quote::before {
  content: '"';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(212,43,43,.12);
  position: absolute;
  top: -20px;
  left: 10px;
  line-height: 1;
}

.r-quote p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  position: relative;
  z-index: 1;
}

.r-quote cite {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--blue-lt);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.ft-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(120px, .85fr)) minmax(230px, 1.2fr);
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

.ft-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .85rem;
}

.ft-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
}

.ft-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.ft-brand-desc {
  max-width: 310px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.7;
}

.ft-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--red);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .75rem;
}

.ft-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ft-links a {
  font-size: 13px;
  color: var(--text-2);
  transition: color .2s;
}

.ft-links a:hover {
  color: var(--red);
}

.ft-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ft-contact li,
.ft-contact a {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.6;
}

.ft-contact a {
  font-weight: 400;
}

.ft-contact a:hover {
  color: var(--red);
}

.ft-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: .06em;
}

.form-success {
  background: #F0FDF4;
  color: #15803D;
  border: 1px solid rgba(21,128,61,.2);
  border-radius: var(--rad);
  padding: 10px 14px;
  font-size: 13px;
  margin-top: 12px;
}

.form-error {
  background: #FEF2F0;
  color: #B91C1C;
  border: 1px solid var(--red-border);
  border-radius: var(--rad);
  padding: 10px 14px;
  font-size: 13px;
  margin-top: 12px;
}

.form-mail-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sidebar-contact-detail {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 8px;
}

.sidebar-contact-detail.email {
  color: var(--blue);
  font-weight: 400;
}

.sidebar-contact-detail.phone {
  color: var(--text-2);
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.d5 {
  transition-delay: .5s;
}

@media (max-width: 1024px) {
  .domains-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 900px) {
  .hero-wrap {
    min-height: auto;
    padding: 0 0 3rem;
  }

  .hero-wrap::before {
    background: rgba(255, 255, 255, 0.95);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #readiness > .container > div[style*="grid"] {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2,1fr);
  }

  .strip-stat:nth-child(2) {
    border-right: none;
  }

  .strip-stat:nth-child(n+3) {
    margin-top: 1.5rem;
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .domains-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 520px) {
  .container,
  .nav-inner,
  .stats-inner,
  .hero-inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-h1 {
    font-size: clamp(2.6rem, 15vw, 3.6rem);
  }

  .data-panel-head,
  .data-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .data-bar-wrap {
    width: 100%;
  }

  .mini-stats,
  .stats-inner,
  .domains-grid,
  .ft-grid {
    grid-template-columns: 1fr;
  }

  .strip-stat,
  .strip-stat:nth-child(2) {
    border-right: none;
  }

  .strip-stat:nth-child(n+2) {
    margin-top: 1.5rem;
  }
}

/* === Pipeline Stats Grid === */
.pipeline-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pipeline-stat-card {
  background: #ffffff;
  border: .5px solid #E2E8F0;
  border-radius: 8px;
  padding: 1.1rem 1rem;
  text-align: center;
  border-top: 3px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.pipeline-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .10);
}

.pipeline-stat-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: .05;
  background: currentColor;
}

.pipeline-stat-card.red   { border-top-color: #D42B2B; color: #D42B2B; }
.pipeline-stat-card.blue  { border-top-color: #1A4FC4; color: #1A4FC4; }
.pipeline-stat-card.green { border-top-color: #16A34A; color: #16A34A; }
.pipeline-stat-card.dark  { border-top-color: #0F172A; color: #0F172A; }

.pipeline-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1;
  margin-bottom: .45rem;
  letter-spacing: -.02em;
}

.pipeline-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}

.pipeline-stat-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #64748B;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .pipeline-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .pipeline-stats-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------
   CORE FEATURES SECTION
---------------------------------------- */

.core-features-section {
  background: #F8FAFC;
  padding: 6rem 0;
}

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

.cf-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease,
              border-color .3s ease;
  cursor: default;
}

.cf-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(212, 43, 43, .12);
  border-color: rgba(212, 43, 43, .25);
}

.cf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D42B2B, #1A4FC4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.cf-card:hover::before {
  transform: scaleX(1);
}

.cf-icon-wrap {
  margin-bottom: 1.25rem;
}

.cf-icon {
  width: 56px;
  height: 56px;
  background: #FEF2F0;
  border: 1.5px solid rgba(212, 43, 43, .18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease,
              border-color .3s ease,
              transform .3s ease;
  color: #D42B2B;
}

.cf-card:hover .cf-icon {
  background: #D42B2B;
  border-color: #D42B2B;
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
}

.cf-svg {
  transition: transform .4s ease;
}
.cf-card:hover .cf-svg {
  transform: rotate(8deg) scale(1.1);
}

.cf-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  line-height: 1.3;
}

.cf-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #64748B;
  line-height: 1.7;
}

.cf-card.d1 { transition-delay: .05s; }
.cf-card.d2 { transition-delay: .12s; }
.cf-card.d3 { transition-delay: .19s; }
.cf-card.d4 { transition-delay: .26s; }
.cf-card.d5 { transition-delay: .33s; }
.cf-card.d6 { transition-delay: .40s; }

@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,43,43,.15); }
  50%      { box-shadow: 0 0 0 6px rgba(212,43,43,.0); }
}
.cf-icon {
  animation: icon-pulse 3s ease infinite;
}
.cf-card:hover .cf-icon {
  animation: none;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.cf-card.visible:not(:hover) {
  animation: card-float 5s ease-in-out infinite;
}
.cf-card.d1.visible:not(:hover) { animation-delay: 0s;   }
.cf-card.d2.visible:not(:hover) { animation-delay: .8s;  }
.cf-card.d3.visible:not(:hover) { animation-delay: 1.6s; }
.cf-card.d4.visible:not(:hover) { animation-delay: .4s;  }
.cf-card.d5.visible:not(:hover) { animation-delay: 1.2s; }
.cf-card.d6.visible:not(:hover) { animation-delay: 2.0s; }

@media (max-width: 960px) {
  .core-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .core-features-grid {
    grid-template-columns: 1fr;
  }
  .cf-card {
    padding: 1.5rem;
  }
}
/* ----------------------------------------
   CORE FEATURES — Option A: Icon-Specific Animations
---------------------------------------- */

/* 1) Sliders: knobs slide */
@keyframes knob-1 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }
@keyframes knob-2 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-4px)} }
@keyframes knob-3 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(6px)} }
.icon-sliders .k1 { animation: knob-1 2.2s ease-in-out infinite; }
.icon-sliders .k2 { animation: knob-2 2.6s ease-in-out infinite; }
.icon-sliders .k3 { animation: knob-3 2.0s ease-in-out infinite; }

/* 2) Clipboard route path dash march */
@keyframes route-travel {
  0%   { stroke-dashoffset: 40; }
  100% { stroke-dashoffset: 0;  }
}
.icon-clipboard path[stroke-dasharray] {
  stroke-dasharray: 40;
  animation: route-travel 2.8s linear infinite;
}

/* 3) Weather: rain falls */
@keyframes rain-drop {
  0%   { transform: translateY(0);  opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}
.icon-weather .rd1 { animation: rain-drop 1.1s ease-in infinite 0s;   transform-box: fill-box; }
.icon-weather .rd2 { animation: rain-drop 1.1s ease-in infinite .3s;  transform-box: fill-box; }
.icon-weather .rd3 { animation: rain-drop 1.1s ease-in infinite .6s;  transform-box: fill-box; }

/* 5) Error pulse */
@keyframes error-pulse {
  0%,100% { filter: drop-shadow(0 0 0 rgba(212,43,43,0)); opacity: 1; }
  50%     { filter: drop-shadow(0 0 6px rgba(212,43,43,.7)); opacity: .8; }
}
.icon-error { animation: error-pulse 1.6s ease-in-out infinite; }

/* 6) Drone propellers spin */
@keyframes spin-cw  { to { transform: rotate(360deg); } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }
.icon-drone .p1,
.icon-drone .p2,
.icon-drone .p3,
.icon-drone .p4 {
  transform-box: fill-box;
  transform-origin: center;
}
.icon-drone .p1 { animation: spin-cw  .55s linear infinite; }
.icon-drone .p2 { animation: spin-ccw .55s linear infinite; }
.icon-drone .p3 { animation: spin-ccw .55s linear infinite; }
.icon-drone .p4 { animation: spin-cw  .55s linear infinite; }

/* ----------------------------------------
   CORE FEATURES — Option B: 3D Magnetic Tilt
---------------------------------------- */
.cf-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.cf-card .cf-icon-wrap,
.cf-card .cf-name,
.cf-card .cf-desc {
  transform: translateZ(0);
}
.cf-card:hover .cf-icon {
  transform: translateZ(25px) scale(1.1);
}

/* Shine overlay (added via JS) */
.cf-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(255,255,255,.22) 0%,
    transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cf-card:hover .cf-shine { opacity: 1; }

/* Disable the float animation since tilt now drives motion */
.cf-card.visible:not(:hover) { animation: none; }

/* ----------------------------------------
   CORE CAPABILITIES — Updated Layout
   Icon LEFT · Text RIGHT · 2-column grid
---------------------------------------- */

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

.cf-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease,
              box-shadow .3s ease,
              border-color .3s ease;
  cursor: default;
}

.cf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(212, 43, 43, .10);
  border-color: rgba(212, 43, 43, .22);
}

.cf-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: #FEF2F0;
  border: 1.5px solid rgba(212, 43, 43, .18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D42B2B;
  transition: background .3s ease,
              border-color .3s ease,
              transform .3s ease;
  flex-shrink: 0;
  margin-bottom: 0;
}

.cf-card:hover .cf-icon {
  background: #D42B2B;
  border-color: #D42B2B;
  color: #ffffff;
  transform: scale(1.06) rotate(-4deg);
}

.cf-content {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.cf-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin: 0;
}

.cf-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 960px) {
  .core-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cf-card { padding: 1.25rem; gap: 1rem; }
  .cf-icon { width: 44px; height: 44px; min-width: 44px; }
  .cf-name { font-size: 14px; }
}
