/* TharaTech - futuristic marketing theme (surfaces matched to logo PNG #fefefe) */
:root {
  /* Matches opaque logo canvas / edge pixels (~254,255,254) */
  --logo-bg: #fefefe;
  --bg-deep: #fefefe;
  --bg-panel: #ffffff;
  --bg-elevated: #f4f7fc;
  --text: #0c1222;
  --text-muted: #475569;
  --line: rgba(124, 58, 237, 0.22);
  --line-cyan: rgba(34, 211, 238, 0.28);
  --purple: #6d28d9;
  --cyan: #0e7490;
  --cyan-bright: #0891b2;
  --violet-glow: rgba(124, 58, 237, 0.2);
  --cyan-glow: rgba(8, 145, 178, 0.25);
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 32px rgba(124, 58, 237, 0.08), 0 0 48px rgba(34, 211, 238, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .fx-canvas,
  .noise,
  .glow-orb,
  .dot.pulse::after {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background-color: #F2F2F2;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--cyan-bright);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line-cyan);
  border-radius: var(--radius-sm);
  z-index: 1000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  /* Solid match to logo PNG canvas so the mark blends edge-to-edge */
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.logo-bg {
  background-color: #F2F2F2;
  padding: 12px 16px;
  border-radius: 10px;
}

.brand-logo {
  width: 200px;
  max-width: min(200px, 48vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(124, 58, 237, 0.08));
}

.footer-logo {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.nav-toggle {
  display: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  cursor: pointer;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list > li > a,
.nav-list > li > .nav-top {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.nav-list > li > a:hover,
.nav-list > li > .nav-top:hover {
  color: var(--text);
  border-color: rgba(8, 145, 178, 0.45);
}

/* Dropdown (desktop hover / focus; mobile stacks inside flyout) */
.nav-item {
  position: relative;
}

.nav-top {
  display: inline-block;
  cursor: pointer;
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 232px;
  background: var(--logo-bg);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 80;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: none;
}

.nav-dropdown a:hover {
  color: var(--text);
  background: rgba(244, 247, 252, 0.95);
}

.nav-list a[aria-current="page"],
.nav-list .nav-top[aria-current="page"] {
  color: var(--text);
  border-color: rgba(124, 58, 237, 0.35);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.72rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  border: 1px solid transparent !important;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(34, 211, 238, 0.18));
  box-shadow: var(--shadow-glow);
  color: var(--text) !important;
}

.nav-cta:hover {
  border-color: rgba(8, 145, 178, 0.55) !important;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }
  .nav-list {
    position: absolute;
    right: 4vw;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(254, 254, 254, 0.98);
    min-width: 220px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    display: none;
  }
  .nav-list.is-open {
    display: flex;
  }
  .nav {
    position: relative;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0.15rem 0 0.35rem 0.65rem;
    min-width: 0;
    background: transparent;
  }
  .nav-dropdown a {
    padding: 0.35rem 0;
  }
  .nav-item {
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    padding-bottom: 0.35rem;
    margin-bottom: 0.25rem;
  }
  .nav-item:last-of-type {
    border-bottom: 0;
  }
}

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  background:
    radial-gradient(ellipse 80% 55% at 50% -25%, rgba(124, 58, 237, 0.08), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(34, 211, 238, 0.07), transparent 50%),
    linear-gradient(180deg, var(--bg-panel) 0%, var(--logo-bg) 55%);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

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

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, #5b21b6, #0e7490);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 1.75rem;
}

.hero-lead strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #041018;
  font-weight: 700;
  background: linear-gradient(120deg, #a78bfa, #22d3ee);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.2), 0 0 40px rgba(124, 58, 237, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.28);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(100, 116, 139, 0.35);
  background: rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.hero-metrics dt {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.hero-metrics dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}

@media (max-width: 520px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

/* Hero - editorial layout (scoped; rest of site keeps global .eyebrow / titles) */
.hero .hero-copy {
  position: relative;
  max-width: 38rem;
  padding-left: 1.15rem;
}

.hero .hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--purple), var(--cyan-bright));
  opacity: 0.85;
}

.hero .eyebrow {
  letter-spacing: 0.12em;
  color: var(--purple);
  font-weight: 600;
}

.hero .hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1.16;
  color: var(--text);
}

.hero .hero-title .gradient-text {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-weight: 800;
}

.hero .hero-lead {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.72;
  letter-spacing: 0.012em;
}

.hero .hero-metrics {
  border-top-color: rgba(124, 58, 237, 0.12);
  padding-top: 1.5rem;
}

.hero .hero-metrics dd {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.hero-panel .rail-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--purple);
}

.hero-panel .rail-list {
  font-size: 0.95rem;
  line-height: 1.52;
}

.hero .panel-footer span.mono {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 252, 0.88));
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.panel-rail {
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.panel-rail::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(34, 211, 238, 0.05), transparent 40%);
  animation: spin 18s linear infinite;
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.rail-label {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
}

.rail-list {
  position: relative;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.rail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.dot.ok {
  background: var(--cyan-bright);
  box-shadow: 0 0 10px var(--cyan-glow);
}

.dot.pulse {
  background: var(--purple);
  box-shadow: 0 0 12px var(--violet-glow);
  position: relative;
}

.dot.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.6);
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.panel-footer {
  position: relative;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mono {
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Trust strip */
.trust {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

.trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
}

.card-icon img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  max-width: 62ch;
}

/* Capabilities grid */
.caps {
  background: linear-gradient(180deg, var(--logo-bg), var(--bg-panel));
}

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

.cap-wide {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-wide {
    grid-column: auto;
  }
}

.cap-card {
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
  position: relative;
  overflow: hidden;
}

.cap-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(34, 211, 238, 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.cap-card:hover::after {
  transform: translateX(100%);
}

.cap-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.cap-card > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.cap-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--cyan-bright);
  filter: drop-shadow(0 0 6px rgba(8, 145, 178, 0.25));
}

.detail-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.detail-list li {
  margin-bottom: 0.5rem;
}

.detail-list.cols-2 {
  columns: 2;
  column-gap: 2rem;
}

@media (max-width: 640px) {
  .detail-list.cols-2 {
    columns: 1;
  }
}

/* Platform */
.platform {
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  border-bottom: 1px solid rgba(34, 211, 238, 0.08);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

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

.numbered {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.numbered li {
  margin-bottom: 0.85rem;
}

.numbered strong {
  color: var(--text);
}

.platform-diagram {
  display: flex;
  justify-content: center;
}

.diagram {
  width: 100%;
  max-width: 380px;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.08), transparent 50%), var(--bg-elevated);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.node {
  text-align: center;
  font-size: 0.82rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.node.small {
  font-size: 0.68rem;
  padding: 0.55rem;
}

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

.edge {
  height: 10px;
  margin: 0 auto;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--cyan));
  border-radius: 2px;
  opacity: 0.85;
}

/* Our story (replaces former milestone timeline) */
.story-section {
  background: linear-gradient(180deg, var(--bg-panel), var(--logo-bg));
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.story-layout .section-head {
  max-width: 720px;
  margin-bottom: 0;
}

.story-main {
  max-width: 720px;
}

.story-main p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.story-main p:last-of-type {
  margin-bottom: 0;
}

.story-main strong {
  color: var(--text);
}

.story-cta {
  margin-top: 1.5rem;
  margin-bottom: 0 !important;
}

.story-aside {
  padding: 1.35rem 1.5rem;
  align-self: start;
}

.story-aside-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}

.story-aside-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.story-aside-list li {
  margin-bottom: 0.65rem;
}

@media (min-width: 900px) {
  .story-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(1.5rem, 4vw, 2.75rem);
    row-gap: 1.25rem;
  }

  .story-layout .section-head {
    grid-column: 1 / -1;
  }

  .story-main {
    grid-column: 1;
    grid-row: 2;
  }

  .story-aside {
    grid-column: 2;
    grid-row: 2;
  }
}

/* Security */
.sec {
  border-top: 1px solid rgba(124, 58, 237, 0.12);
}

.sec-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

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

.checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
}

.sec-panel {
  padding: 1.5rem;
}

.sec-panel-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.sec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(8, 145, 178, 0.35);
  color: var(--cyan-bright);
  margin-right: 0.5rem;
}

/* Contact */
.contact {
  padding-bottom: 4rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

@media (max-width: 800px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

.contact-actions {
  text-align: center;
}

.fineprint {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: var(--logo-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-tag {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-address {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 16rem;
}

.contact-meta {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-meta a {
  font-weight: 600;
}

.contact-hint {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* Inner pages (Mind Computing-style IA) */
.page-main {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.page-hero {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(124, 58, 237, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bg-panel), var(--logo-bg));
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.65rem;
}

.page-hero .lead {
  margin: 0;
  max-width: 62ch;
  color: var(--text-muted);
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.anchor-target {
  scroll-margin-top: 6rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.news-card {
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-card time {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}

.news-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.news-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
}

.news-card .read {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}

/* Blog / news cards with photography */
.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card-thumb {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.15rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.blog-card-body p {
  flex: 1;
}

.blog-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
}

/* Full-bleed imagery strip */
.visual-strip {
  margin: 0;
  padding: 0;
  line-height: 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.visual-strip-img {
  width: 100%;
  display: block;
  height: min(38vh, 400px);
  object-fit: cover;
}

.about-figure {
  margin: 2rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.about-figure img {
  width: 100%;
  display: block;
  height: min(32vh, 320px);
  object-fit: cover;
}

.about-figure figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(244, 247, 252, 0.9);
}

.services-banner {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.services-banner img {
  width: 100%;
  display: block;
  height: min(28vh, 260px);
  object-fit: cover;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.quote-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.14);
  background: rgba(255, 255, 255, 0.85);
}

.quote-box h2 {
  margin-top: 0;
}

.quote-form p {
  margin: 0 0 0.85rem;
}

.quote-form label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.field-input {
  width: 100%;
  max-width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
}

.field-input:focus {
  outline: 2px solid rgba(8, 145, 178, 0.35);
  outline-offset: 1px;
}

.field-textarea {
  resize: vertical;
  min-height: 6rem;
}

.quote-actions {
  margin-bottom: 0 !important;
}

.engagement-cta {
  margin-top: 1rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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