@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg-dark: #0a0e1a;
  --bg-card: #151926;
  --bg-elevated: #1e2538;
  --text-main: #e8ecf0;
  --text-muted: #a0aec0;
  --text-soft: #c8d2df;
  --text-faint: #7f8aa3;
  --accent-teal: #00c9b1;
  --accent-orange: #ff6b35;
  --accent-purple: #7b61ff;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --glass-bg: rgba(21, 25, 38, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --shadow-glow: 0 0 20px rgba(0, 201, 177, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #05070a;
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.mobile-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(0, 201, 177, 0.72);
  outline-offset: 3px;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

p {
  color: var(--text-muted);
}

ul,
ol {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

li + li {
  margin-top: 0.8rem;
}

.design-frame {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.technology-page .design-frame {
  overflow: visible;
}

.technology-page .hero-panel {
  padding-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--accent-orange), #ff3b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--accent-teal);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(0, 201, 177, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 201, 177, 0.5);
}

.btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(0, 201, 177, 0.16);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-teal {
  background: transparent;
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
}

.pill-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 201, 177, 0.3);
  background: rgba(0, 201, 177, 0.1);
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

body:not(.home-page) .glass-card:hover,
body:not(.home-page) .feature-card:hover,
body:not(.home-page) .product-card:hover,
body:not(.home-page) .news-card:hover,
body:not(.home-page) .content-card:hover {
  border-color: rgba(0, 201, 177, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(0, 201, 177, 0.32);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(-8px);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.5;
}

.pcb-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(4, 7, 12, 0.58) 0%, rgba(6, 10, 18, 0.74) 34%, rgba(8, 12, 20, 0.88) 68%, rgba(10, 14, 26, 0.96) 100%),
    radial-gradient(circle at top center, rgba(0, 201, 177, 0.14), transparent 38%),
    url("../assets/Modern data centre corridor in focus.png");
  background-position: center center, center top, center center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.glow-spot {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(12px);
}

.home-page #nav-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
}

.home-page .site-nav {
  position: absolute;
  background: linear-gradient(180deg, rgba(4, 7, 12, 0.72) 0%, rgba(4, 7, 12, 0.28) 55%, transparent 100%);
  border-bottom: 0;
  backdrop-filter: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.55rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:focus-visible,
.nav-dropdown-item:focus-visible,
.nav-logo:focus-visible,
.mobile-nav-item:focus-visible,
.mobile-nav-subitem:focus-visible,
.mobile-nav-cta:focus-visible,
.mobile-nav-close:focus-visible,
.nav-mobile-toggle:focus-visible,
.footer-col a:focus-visible,
.breadcrumb a:focus-visible {
  color: #fff;
}

.nav-dropdown-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: inherit;
}

.nav-dropdown-caret {
  color: currentColor;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.08rem);
  left: 0;
  transform: translateY(4px);
  min-width: 420px;
  max-width: min(520px, calc(100vw - 3rem));
  padding: 1rem;
  border: 1px solid rgba(0, 201, 177, 0.15);
  border-radius: 20px;
  background: rgba(26, 31, 44, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-item {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-dropdown-item:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 18, 0.98);
  backdrop-filter: blur(16px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 120;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-shell {
  width: min(100%, 720px);
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 28px;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
  min-height: 40px;
}

.mobile-nav-header .nav-logo {
  gap: 10px;
  font-size: 1.1rem;
}

.mobile-nav-close {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 1.9rem;
  line-height: 1;
}

.mobile-nav-list,
.mobile-nav-sublist {
  display: flex;
  flex-direction: column;
}

.mobile-nav-list {
  gap: 0.4rem;
  flex: 1;
}

.mobile-nav-list > .mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-item,
.mobile-nav-subitem {
  color: #fff;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0.6rem 0;
  text-align: left;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  width: 100%;
}

.mobile-nav-item.is-active,
.mobile-nav-subitem:hover {
  color: var(--accent-teal);
}

.mobile-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-group .mobile-nav-item {
  width: 100%;
}

.mobile-nav-arrow {
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-group.is-expanded .mobile-nav-arrow {
  transform: rotate(90deg);
  color: var(--accent-teal);
}

.mobile-nav-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  padding-top: 1.5rem;
}

.mobile-nav-cta {
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
}

.mobile-nav-cta-primary {
  background: #fff;
  color: var(--bg-dark);
  border-color: #fff;
}

.mobile-nav-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  color: #fff;
  letter-spacing: -0.03em;
}

.mobile-nav-sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.22s ease, padding-bottom 0.22s ease;
  opacity: 0;
  padding-left: 0.35rem;
}

.mobile-nav-subitem {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
}

.mobile-nav-group.is-expanded .mobile-nav-sublist {
  max-height: 420px;
  opacity: 1;
  padding-bottom: 0.5rem;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 20px 72px;
  position: relative;
}

.hero-content {
  max-width: 900px;
  z-index: 10;
}

.home-page .hero-content {
  transform: translateY(32px);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.25rem;
  width: 100%;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(0, 201, 177, 0.4);
  box-shadow: 0 0 20px rgba(0, 201, 177, 0.08);
}

.stat-val {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--accent-teal);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section,
.section-shell {
  padding: 100px 5%;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
}

.section-tag {
  color: var(--accent-teal);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-layout-wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-layout-top {
  align-items: start;
}

.feature-card,
.product-card,
.news-card,
.content-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-orange);
  opacity: 0.5;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 201, 177, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon svg,
.flow-box svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.feature-card h4,
.product-card h3,
.news-card h3,
.content-card h3 {
  margin-bottom: 0.75rem;
}

.product-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scrollbar-width: none;
}

.product-scroll::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 320px;
  overflow: hidden;
}

a.product-card,
a.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.card-link-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--accent-teal);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, color 0.2s ease;
}

.link-card:hover .card-link-label,
.link-card:focus-visible .card-link-label {
  transform: translateX(4px);
}

.link-card:focus-visible {
  outline: 2px solid rgba(0, 201, 177, 0.65);
  outline-offset: 2px;
}

.products-grid .product-card {
  min-width: 0;
}

.status-badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.badge-live {
  background: rgba(0, 201, 177, 0.15);
  color: var(--accent-teal);
}

.badge-soon {
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent-orange);
}

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

.product-card-featured {
  border-color: rgba(0, 201, 177, 0.25);
}

.product-card-roadmap {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    var(--bg-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.product-card-purple {
  border-color: rgba(123, 97, 255, 0.3);
}

.product-card-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), transparent);
}

.product-card-topbar-purple {
  background: linear-gradient(90deg, var(--accent-purple), transparent);
}

.product-card-topbar-muted {
  background: linear-gradient(90deg, #8c99b6, transparent);
}

.product-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(0, 201, 177, 0.15);
}

.product-number-muted {
  color: rgba(255, 255, 255, 0.1);
}

.roadmap-label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
}

.roadmap-title {
  color: #d6ddeb;
}

.roadmap-copy {
  color: var(--text-muted);
}

.roadmap-link {
  color: var(--text-soft);
}

.product-number-purple {
  color: rgba(123, 97, 255, 0.15);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.market-tile {
  background: var(--bg-dark);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s;
}

body:not(.home-page) .market-tile:hover {
  background: var(--bg-card);
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 80px 5% 40px;
  background: #080a12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-teal);
}

.icon-heat-wave {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.breadcrumb span {
  color: var(--accent-teal);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
  vertical-align: top;
}

.specs-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.02);
  position: absolute;
  top: -20px;
  right: 5%;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.timeline-stack {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-left: 2px solid var(--accent-teal);
  margin-left: 20px;
  position: relative;
}

.timeline-item.faded {
  border-left-color: rgba(0, 201, 177, 0.3);
}

.timeline-item.muted {
  border-left-color: transparent;
}

.timeline-marker {
  position: absolute;
  left: -11px;
  top: 1.8rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.timeline-marker.outline {
  background: var(--bg-dark);
  border: 2px solid var(--accent-teal);
  color: var(--accent-teal);
}

.timeline-marker.off {
  background: var(--bg-dark);
  border: 2px solid #444;
  color: var(--text-faint);
}

.tech-tabs {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.tech-tabs::-webkit-scrollbar {
  display: none;
}

.tech-tabs-shell {
  position: sticky;
  top: 0;
  z-index: 45;
  padding: 0 5%;
  background:
    linear-gradient(180deg, rgba(8, 11, 20, 0.98), rgba(10, 14, 26, 0.94));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.tech-tabs-shell .tech-tabs {
  max-width: 100%;
  background: transparent;
}

.tech-section {
  scroll-margin-top: calc(var(--site-nav-height, 80px) + var(--tech-tabs-height, 56px) + 24px);
}

.technology-page .tech-section {
  padding-top: 72px;
  padding-bottom: 84px;
}

.technology-page [data-tech-section="overview"].tech-section {
  padding-top: 32px;
}

.tech-tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 1rem 2rem;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.9rem;
  transition: color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.tech-tab.active {
  color: var(--accent-teal);
  border-bottom: 2px solid var(--accent-teal);
  margin-bottom: -1px;
  font-weight: 600;
}

.architecture-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 2rem 0;
}

.home-architecture-heading {
  line-height: 1.1;
}

.flow-node {
  text-align: center;
  min-width: 130px;
}

.flow-box {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.flow-box svg {
  width: 36px;
  height: 36px;
}

.flow-arrow {
  flex: 1;
  height: 2px;
  min-width: 40px;
  position: relative;
}

.flow-label {
  letter-spacing: 0.01em;
}

.flow-meta {
  line-height: 1.45;
}

.legend-row,
.logo-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-strip {
  align-items: center;
  gap: 4rem;
}

.news-grid,
.valuation-grid,
.detail-feature-grid {
  display: grid;
  gap: 1.5rem;
}

body:not(.home-page) .detail-feature-grid .feature-card {
  transition: none;
}

body:not(.home-page) .detail-feature-grid .feature-card:hover {
  border-color: var(--border-subtle);
  background: var(--bg-card);
  transform: none;
  box-shadow: none;
}

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

.valuation-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.news-card {
  padding: 2rem;
}

.content-card {
  padding: 2.5rem;
}

.content-card strong,
.feature-card strong {
  color: #fff;
}

.muted-frame {
  background: #0d111c;
}

.hero-panel {
  padding: 140px 5% 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero-panel-gradient {
  background: linear-gradient(180deg, #080b14 0%, var(--bg-dark) 100%);
}

.products-hero {
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.24) 0%, rgba(4, 7, 12, 0.64) 42%, rgba(4, 7, 12, 0.9) 74%, rgba(10, 14, 26, 1) 100%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.84) 0%, rgba(5, 7, 10, 0.56) 46%, rgba(5, 7, 10, 0.74) 100%),
    url("../assets/thermalinterconnectstack.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.technology-hero {
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.24) 0%, rgba(4, 7, 12, 0.62) 42%, rgba(4, 7, 12, 0.9) 74%, rgba(10, 14, 26, 1) 100%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.84) 0%, rgba(5, 7, 10, 0.56) 46%, rgba(5, 7, 10, 0.74) 100%),
    url("../assets/thermalawaredesign.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.markets-hero {
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.24) 0%, rgba(4, 7, 12, 0.62) 42%, rgba(4, 7, 12, 0.9) 74%, rgba(10, 14, 26, 1) 100%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.84) 0%, rgba(5, 7, 10, 0.56) 46%, rgba(5, 7, 10, 0.74) 100%),
    url("../assets/thermallimits.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-hero {
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.2) 0%, rgba(4, 7, 12, 0.6) 38%, rgba(4, 7, 12, 0.88) 72%, rgba(10, 14, 26, 1) 100%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.8) 0%, rgba(5, 7, 10, 0.52) 46%, rgba(5, 7, 10, 0.72) 100%),
    url("../assets/thermalawareinfra.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.detail-media {
  background: var(--bg-card);
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.metric-panel {
  display: grid;
  gap: 1.5rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.metric-card h3 {
  color: var(--accent-teal);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.product-spec-layout .metric-card {
  height: 100%;
}

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

.fit-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.fit-card p {
  margin-top: 0.75rem;
  line-height: 1.7;
}

.cta-panel {
  background:
    radial-gradient(circle at top right, rgba(0, 201, 177, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(18, 24, 37, 0.92), rgba(12, 17, 28, 0.98));
  border: 1px solid rgba(0, 201, 177, 0.14);
  border-radius: 24px;
  padding: 3rem;
}

.cta-panel p {
  max-width: 640px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.legal-shell {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
}

.legal-card h2,
.legal-card h3 {
  margin: 2rem 0 1rem;
}

.legal-card h2:first-child,
.legal-card h3:first-child {
  margin-top: 0;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + p {
  margin-top: 1rem;
}

.contact-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-method-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.contact-method-link:hover {
  color: var(--accent-teal);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
}

.contact-context {
  display: none;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(0, 201, 177, 0.08);
  border: 1px solid rgba(0, 201, 177, 0.18);
  color: var(--text-soft);
}

.contact-context.is-visible {
  display: block;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  font: inherit;
  padding: 0.9rem 1rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}

.form-field textarea {
  min-height: 144px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.form-helper,
.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-route {
  color: var(--text-soft);
}

.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-note {
  max-width: 460px;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(123, 97, 255, 0.08);
  border: 1px solid rgba(123, 97, 255, 0.18);
}

.form-success.is-visible {
  display: block;
}

.contact-sidebar {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  height: 100%;
}

.contact-sidebar .content-card {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-sidebar ul {
  margin-top: 1rem;
}

.contact-timeline {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.contact-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.contact-timeline-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 201, 177, 0.12);
  border: 1px solid rgba(0, 201, 177, 0.2);
  color: var(--accent-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.contact-intake-section {
  padding-top: 64px;
}

.contact-success-page .design-frame {
  min-height: 100vh;
}

.contact-success-shell {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 20px 3rem;
}

.contact-success-content {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.contact-success-card {
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 2.25rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-page .home-products .product-scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  overflow: visible;
  padding-bottom: 0;
}

.home-page .home-products .product-card {
  min-width: 0;
  padding: 1.75rem;
}

.home-page .home-products .feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
}

.home-page .home-products .product-card h3 {
  font-size: 1.1rem;
}

.home-page .home-products .status-badge {
  top: 1.15rem;
  right: 1.15rem;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.12;
  }
  50% {
    opacity: 0.22;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.text-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

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

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

  .home-page .home-products .product-scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .grid-3,
  .grid-4,
  .fit-grid,
  .market-grid,
  .news-grid,
  .valuation-grid,
  .detail-feature-grid,
  .products-grid,
  .contact-grid,
  .contact-layout,
  .info-grid,
  .split-layout,
  .split-layout-wide {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    grid-template-rows: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 4%;
  }

  .nav-links,
  .nav-actions {
    flex-wrap: wrap;
  }

  .nav-dropdown-menu {
    left: 0;
    min-width: min(420px, calc(100vw - 3rem));
    transform: translateY(4px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translateY(0);
  }

  .home-page .home-products .product-scroll {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .section,
  .section-shell,
  .hero-panel,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-section {
    padding-top: 132px;
    padding-bottom: 56px;
  }

  .home-page .hero-content {
    transform: translateY(16px);
  }

  .site-nav {
    justify-content: space-between;
    min-height: 76px;
  }

  .tech-tabs-shell {
    position: sticky;
    top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tech-tabs {
    justify-content: flex-start;
    min-width: max-content;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .mobile-nav-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-nav-footer {
    grid-template-columns: 1fr;
  }

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

  .logo-strip {
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-card,
  .cta-panel {
    padding: 1.75rem;
  }

  .contact-success-shell {
    min-height: calc(100vh - 76px);
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .contact-success-card {
    margin-top: 1.5rem;
    padding: 1.75rem;
  }

  .product-hero-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .product-hero-layout > .product-hero-copy {
    display: contents;
  }

  .product-hero-layout > .product-hero-copy > .pill-badge {
    order: 1;
    margin-bottom: 0;
  }

  .product-hero-layout > .product-hero-copy > h1 {
    order: 2;
    margin-bottom: 0 !important;
  }

  .product-hero-layout > .detail-media {
    order: 3;
    width: 100%;
    align-self: stretch;
  }

  .product-hero-layout > .product-hero-copy > p {
    order: 4;
    margin-bottom: 0 !important;
  }

  .product-hero-layout > .product-hero-copy > .product-hero-actions {
    order: 5;
    justify-content: flex-start;
  }

  .product-spec-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .product-spec-layout > :first-child,
  .product-spec-layout .specs-table,
  .product-spec-layout .metric-panel {
    width: 100%;
  }

  .product-spec-layout .metric-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .product-spec-layout .metric-card {
    padding: 1.5rem;
  }

  .product-spec-layout .metric-card h3 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .home-architecture-header {
    margin-bottom: 3rem !important;
  }

  .home-architecture-heading {
    font-size: 2rem !important;
  }

  .architecture-flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    overflow: visible;
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 1rem 0 0;
  }

  .flow-node {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .flow-box {
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .flow-label {
    margin-top: 0 !important;
    font-size: 0.85rem !important;
  }

  .flow-meta {
    margin-top: 0.35rem !important;
    font-size: 0.78rem !important;
  }

  .flow-arrow {
    width: 2px;
    height: 38px;
    min-width: 0;
    margin-left: 35px;
    flex: none;
    background: none !important;
  }

  .flow-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
  }

  .architecture-flow > .flow-arrow:nth-child(2)::before {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.5), rgba(0, 201, 177, 0.5));
  }

  .architecture-flow > .flow-arrow:nth-child(4)::before {
    background: linear-gradient(180deg, rgba(0, 201, 177, 0.5), rgba(0, 201, 177, 0.8));
  }

  .architecture-flow > .flow-arrow:nth-child(6)::before {
    background: linear-gradient(180deg, rgba(0, 201, 177, 0.8), rgba(123, 97, 255, 0.5));
  }

  .architecture-flow > .flow-arrow:nth-child(8)::before {
    background: linear-gradient(180deg, rgba(123, 97, 255, 0.5), rgba(123, 97, 255, 0.8));
  }

  .flow-arrow > div {
    top: auto !important;
    right: auto !important;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .architecture-legend {
    width: min(100%, 340px);
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    gap: 0.9rem;
  }

  .legend-item {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .home-page .hero-content,
  .link-card:hover,
  .link-card:focus-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
