/*
Theme Name: Nanoweave WP
Theme URI: https://nanoweave.co
Author: Nanoweave
Description: Custom single-page theme for Nanoweave.
Version: 1.0
License: GPLv2 or later
Text Domain: nanoweave-wp
*/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,600&display=swap");
:root {
  --green: #1da95b;
  --blue: #3019c0;
  --black: #000000;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--black);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(29, 169, 91, 0.18) 0%, rgba(48, 25, 192, 0.12) 45%, #ffffff 100%);
  scroll-padding-top: 120px;
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at 80% 10%, rgba(29, 34, 169, 0.18), transparent 55%), radial-gradient(circle at 10% 80%, rgba(62, 49, 148, 0.16), transparent 50%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 0;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.banner {
  padding: 12px clamp(20px, 5vw, 72px) 0;
  display: flex;
  justify-content: center;
}

.banner-media {
  width: 100%;
  max-width: min(900px, 100%);
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000000;
}

.banner-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.site-header:hover .nav,
.site-header:focus-within .nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header:hover,
.site-header:focus-within {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 80px clamp(20px, 6vw, 96px) 48px;
  align-items: center;
}

.hero h1 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 12px 0 18px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgb(27, 163, 0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 32px;
}

.button {
  background: var(--green);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 25px rgba(29, 169, 91, 0.35);
}

.button:hover {
  transform: translateY(-2px);
}

.button--ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

.button--dark {
  background: var(--blue);
  box-shadow: 0 18px 30px rgba(48, 25, 192, 0.35);
}

.metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.metric {
  font-size: 1.6rem;
  font-weight: 700;
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.75);
}

.hero-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  gap: 22px;
  align-content: center;
}

.orb {
  width: min(320px, 70vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url("https://nanoweave.co/wp-content/uploads/2026/02/lightning_forest.png") center/cover no-repeat;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.25));
}

.panel {
  position: absolute;
  bottom: -10px;
  right: 10px;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 320px;
}

.panel h3 {
  margin: 0 0 6px;
}

.panel ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: rgb(0, 24, 145);
}

.section {
  padding: 72px clamp(20px, 6vw, 96px);
}

.section.alt {
  background: rgba(48, 25, 192, 0.04);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 36px;
}

.section h2 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 12px 0 16px;
}

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-photo {
  width: 45%;
  max-width: 180px;
  height: 180px;
  border-radius: 16px;
  margin-bottom: 0;
  object-fit: scale;
}

#team .card {
  display: flex;
  align-items: center;
  gap: 18px;
}

#team .card h3,
#team .card p {
  margin: 0;
}

#team .card p {
  margin-top: 8px;
}

.linkedin-link {
  display: inline-flex;
  align-items: bottom;
  margin-top: 10px;
}

.linkedin-link img {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 720px) {
  #team .card {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-photo {
    width: 100%;
    max-width: 100%;
  }
}
.impact {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.impact-item {
  background: linear-gradient(135deg, rgba(29, 169, 91, 0.12), rgba(48, 25, 192, 0.12));
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.timeline {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  text-align: center;
  font-weight: 800;
  color: rgb(0, 0, 0);
}

.cta {
  margin: 48px clamp(20px, 6vw, 96px) 72px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(29, 169, 91, 0.18), rgba(48, 25, 192, 0.16));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 42px clamp(20px, 6vw, 96px) 60px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(0, 0, 0, 0.8);
}

.legal {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .panel {
    position: static;
  }
  .hero-visual {
    min-height: auto;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .hero-visual,
  .section,
  .cta {
    animation: fadeInUp 0.8s ease both;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}