/* ============================================================
   LARA.ai — style.css
   Design system: Syne (display) + DM Sans (body)
   Accent: #FF4D00 · Black: #0a0a0a · White: #ffffff
   ============================================================ */

/* --- 1. VARIABLES & RESET --- */

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

:root {
  --black:        #0a0a0a;
  --white:        #ffffff;
  --accent:       #FF4D00;
  --accent-light: #FF6B2B;
  --grey-100:     #f5f5f3;
  --grey-200:     #e8e8e5;
  --grey-400:     #9a9a95;
  --grey-700:     #3a3a37;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        74px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

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

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

/* --- 2. CUSTOM CURSOR --- */

.cursor {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.08s ease;
  opacity: 0.6;
}

/* --- 3. NAVIGATION --- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav-logo img {
  height: 36px;
  width: auto;
}

/* Fallback text logo if image missing */
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--black);
}
.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #e04400 !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 199;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.875rem 2.5rem;
  font-size: 0.9rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- 4. HERO --- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 77, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 77, 0, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero logo — centered in upper half of hero */
.hero-logo-mark {
  position: absolute;
  top: calc(var(--nav-h) + 3.5rem);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.hero-logo-mark img {
  height: 110px;
  width: auto;
  /* invert the dark outlines to white so logo is visible on dark hero */
  filter: brightness(0) invert(1);
}

/* Subtle radial glow */
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 77, 0, 0.12);
  border: 1px solid rgba(255, 77, 0, 0.3);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
}

.stat-item { text-align: right; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--accent); }

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

.scroll-indicator {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 77, 0, 0.8), transparent);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- 5. SECTION BASE --- */

section { padding: 7rem 3rem; }

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.section-h2 span, .section-h2 em {
  font-style: normal;
  color: var(--accent);
}

/* --- 6. ABOUT --- */

.about {
  background: var(--grey-100);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.about-left h2 span { color: var(--accent); }

.about-left p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Founder note */
.founder-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--white);
}

.founder-note blockquote {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.founder-note cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.capability-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.capability-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.capability-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.capability-card:hover::before { transform: scaleY(1); }

.cap-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.cap-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.cap-desc {
  font-size: 0.85rem;
  color: var(--grey-400);
  font-weight: 300;
  line-height: 1.6;
}

/* --- 7. PRODUCTS --- */

.products { background: var(--white); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.products-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.products-header-note {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-400);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--grey-200);
  border: 1.5px solid var(--grey-200);
}

.product-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.product-card:hover { background: var(--black); }

.product-card:hover .product-name,
.product-card:hover .product-desc,
.product-card:hover .product-tech,
.product-card:hover .product-outcome-label { color: var(--white); }

.product-card:hover .product-icon {
  background: rgba(255, 77, 0, 0.15);
  color: var(--accent);
}

.product-card:hover .product-tag {
  background: rgba(255, 77, 0, 0.1);
  color: var(--accent-light);
  border-color: rgba(255, 77, 0, 0.2);
}

.product-card:hover .product-outcome { color: rgba(255, 255, 255, 0.5); }

.product-icon {
  width: 48px;
  height: 48px;
  background: var(--grey-100);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  transition: color 0.35s;
}

.product-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 1rem;
  transition: color 0.35s;
}

.product-outcome {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: color 0.35s;
}

.product-outcome-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 0.25rem;
  transition: color 0.35s;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.product-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 2px;
  transition: all 0.35s;
}

.product-tech {
  font-size: 0.75rem;
  color: var(--grey-400);
  font-weight: 300;
  transition: color 0.35s;
}
.product-tech strong {
  font-weight: 500;
  color: var(--accent);
}

/* --- 8. CLAUDE / CERTIFICATIONS --- */

.claude-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.claude-section::before {
  content: 'ANTHROPIC';
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18vw;
  color: rgba(255, 255, 255, 0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.claude-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
}

.claude-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.claude-left h2 em {
  font-style: normal;
  color: var(--accent);
}

.claude-left > p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.academy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.25);
  color: var(--accent-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.claude-certs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cert-item {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.cert-item:hover { border-color: rgba(255, 77, 0, 0.3); }

.cert-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.cert-item.in-progress::before { background: rgba(255, 77, 0, 0.4); }
.cert-item.enrolled::before    { background: rgba(255, 255, 255, 0.15); }

.cert-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.cert-check {
  width: 26px;
  height: 26px;
  background: rgba(255, 77, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.cert-item.in-progress .cert-check { background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.35); }
.cert-item.enrolled .cert-check    { background: rgba(255, 255, 255, 0.04); color: rgba(255, 255, 255, 0.2); }

.cert-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
}
.cert-text strong {
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 0.1rem;
}

.cert-meta {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

.cert-score {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 77, 0, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

/* Progress bar */
.cert-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  margin-top: 0.5rem;
  overflow: hidden;
}

.cert-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s ease 0.3s;
}
.cert-progress-fill.animated { transform: scaleX(1); }

/* Right column metrics */
.claude-right {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.claude-metric {
  padding: 2rem 2.5rem;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}
.claude-metric:last-child { border-bottom: none; }
.claude-metric:hover { background: rgba(255, 77, 0, 0.04); }

.metric-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Partner track call-out */
.partner-callout {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 77, 0, 0.06);
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.partner-callout p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.partner-callout p strong {
  font-weight: 500;
  color: var(--accent-light);
}

/* --- 9. SERVICES --- */

.services { background: var(--grey-100); }

.services-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.services h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--grey-200);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 77, 0, 0.08);
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--grey-200);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.25s;
}
.service-card:hover .service-num { color: rgba(255, 77, 0, 0.12); }

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-700);
  line-height: 1.7;
}

/* --- 10. TEAM --- */

.team { background: var(--white); }

.team-header {
  margin-bottom: 4rem;
}

.team-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.team-header h2 span { color: var(--accent); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.team-card {
  border: 1px solid var(--grey-200);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.team-card:hover { border-color: var(--accent); }

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.team-card:hover::after { transform: scaleX(1); }

.team-role-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 77, 0, 0.08);
  border: 1px solid rgba(255, 77, 0, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.team-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.team-title {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--grey-400);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.team-bio {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.team-skill {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 2px;
  color: var(--grey-700);
}

/* MSME badge on team card */
.msme-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--black);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.msme-note-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.msme-note-text strong {
  font-weight: 500;
  color: var(--white);
}

.msme-badge {
  flex-shrink: 0;
  text-align: center;
}

.msme-badge-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.msme-badge-sub {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- 11. CONTACT --- */

.contact {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.contact-left h2 em {
  font-style: normal;
  color: var(--accent);
}

.contact-left > p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-info { display: flex; flex-direction: column; gap: 0; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-200);
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.contact-row:hover { color: var(--accent); }

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--grey-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.contact-row:hover .contact-icon { background: rgba(255, 77, 0, 0.1); }

.contact-text {
  font-size: 0.9rem;
  font-weight: 400;
}
.contact-sub {
  font-size: 0.73rem;
  color: var(--grey-400);
  font-weight: 300;
  margin-top: 0.1rem;
}

/* Right side — form */
.contact-right {
  background: var(--black);
  padding: 3rem;
  color: var(--white);
}

.contact-right h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-right > p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.25); }
.form-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.2s;
  width: 100%;
}
.btn-submit:hover { background: var(--accent-light); }
.btn-submit:disabled {
  background: rgba(255, 77, 0, 0.4);
  cursor: not-allowed;
}

.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.3);
  text-align: center;
}
.form-success.visible { display: block; }
.form-success p {
  font-size: 0.9rem;
  color: var(--accent-light);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.form-success strong {
  font-weight: 500;
  color: var(--white);
}

/* --- 12. FOOTER --- */

footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.3);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img {
  height: 24px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.footer-logo:hover img { opacity: 1; }

/* Fallback text */
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-logo-text span { color: var(--accent); }

footer p {
  font-size: 0.73rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-right {
  display: flex;
  gap: 2rem;
}

.footer-right a {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.footer-right a:hover { color: var(--accent); }

/* --- 13. SCROLL REVEAL ANIMATIONS --- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* --- 14. RESPONSIVE --- */

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

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; cursor: pointer; }

  section { padding: 4.5rem 1.5rem; }

  .hero { padding: 0 1.5rem 4rem; }
  .hero h1 { font-size: clamp(2.8rem, 9vw, 4rem); }
  .hero-sub { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 2rem; }
  .stat-num { font-size: 2.2rem; }

  .about,
  .claude-inner,
  .contact { grid-template-columns: 1fr; gap: 3rem; }

  .products-grid,
  .services-grid { grid-template-columns: 1fr; }

  .products-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .products-header-note { text-align: left; max-width: 100%; }

  .team-grid { grid-template-columns: 1fr; gap: 2rem; }

  .msme-note { flex-direction: column; text-align: center; }

  footer {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .footer-right { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }

  .hero-logo-mark { display: none; }

  /* Restore normal cursor on touch devices */
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .btn-submit { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-item { text-align: left; }
  .team-card { padding: 2rem; }
  .contact-right { padding: 2rem; }
}
