/* Winds Technologies — global stylesheet */

:root {
  --navy: #0a1628;
  --navy-2: #0f1f3a;
  --navy-3: #142b4f;
  --steel: #2a3a52;
  --steel-light: #6b7a90;
  --sky: #4cc9f0;
  --sky-2: #00b4d8;
  --sky-deep: #0077b6;
  --white: #ffffff;
  --off: #f4f7fb;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(10, 22, 40, 0.08);
  --shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--sky-deep); text-decoration: none; }
a:hover { color: var(--sky-2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--off);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-alt {
  background: var(--off);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-2);
  margin-bottom: 16px;
}

.section-dark .eyebrow { color: var(--sky); }

.lead {
  font-size: 1.125rem;
  color: var(--steel);
  max-width: 720px;
}

.section-dark .lead { color: #b8c4d6; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sky-2), var(--sky-deep));
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.35);
}

.brand small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-family: var(--font);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  color: #cfd8e8;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  background: rgba(76, 201, 240, 0.12);
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sky-2), var(--sky-deep));
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3);
}

.nav-cta:hover { transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 880px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 12px 16px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { display: block; padding: 12px 14px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  font-family: var(--font);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky-2), var(--sky-deep));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.35);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--sky);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(76, 201, 240, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(0, 119, 182, 0.22), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 880px) {
  .hero { padding: 80px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}

.hero .gradient-text {
  background: linear-gradient(135deg, var(--sky), var(--sky-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: #cfd8e8;
  font-size: 1.18rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sky);
  margin-bottom: 4px;
}

.hero-stats .stat span {
  font-size: 0.85rem;
  color: #9aa9bf;
  letter-spacing: 0.04em;
}

/* Hero visual — animated weather station SVG */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(76,201,240,0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: pulse 6s ease-in-out infinite;
}

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

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(76, 201, 240, 0.25);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}

.orbit-ring::after {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--sky);
  transform: translateX(-50%);
}

.orbit-ring.r2 {
  inset: 12%;
  animation-duration: 28s;
  animation-direction: reverse;
  border-color: rgba(0, 180, 216, 0.35);
}

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

.hero-visual svg {
  position: relative;
  width: 70%;
  filter: drop-shadow(0 12px 30px rgba(0, 180, 216, 0.3));
}

/* ===== Cards / Feature grids ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-2);
}

.section-dark .feature {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.section-dark .feature:hover {
  background: rgba(76, 201, 240, 0.06);
  border-color: var(--sky-2);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 119, 182, 0.08));
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--sky-2);
}

.section-dark .feature-icon {
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.18), rgba(0, 119, 182, 0.1));
  color: var(--sky);
}

.feature h3 { margin-bottom: 8px; }

.feature p {
  color: var(--steel);
  font-size: 0.95rem;
  margin: 0;
}

.section-dark .feature p { color: #b8c4d6; }

/* ===== Section header ===== */
.section-head {
  max-width: 760px;
}
.section-head.center {
  margin: 0 auto;
  text-align: center;
}

/* ===== Product list ===== */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

.product-row:nth-child(even) > .product-visual { order: -1; }

@media (max-width: 880px) {
  .product-row { grid-template-columns: 1fr; gap: 32px; }
  .product-row:nth-child(even) > .product-visual { order: 0; }
}

.product-visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(76, 201, 240, 0.2), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0, 180, 216, 0.15), transparent 50%);
}

.product-visual svg {
  position: relative;
  width: 60%;
  color: var(--sky);
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-2);
  margin-bottom: 12px;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--steel);
  font-size: 0.96rem;
}

.product-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px; height: 18px;
  margin-top: 3px;
  background: linear-gradient(135deg, var(--sky-2), var(--sky-deep));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ===== Application tiles ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.app-tile {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  color: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.2s;
}

.app-tile:hover {
  transform: translateY(-6px);
  border-color: var(--sky-2);
}

.app-tile::after {
  content: "";
  position: absolute;
  bottom: -50%; right: -30%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.18), transparent 70%);
  border-radius: 50%;
}

.app-tile h3 { color: var(--white); margin-bottom: 8px; position: relative; }
.app-tile p { color: #b8c4d6; font-size: 0.95rem; margin: 0; position: relative; }
.app-tile .feature-icon {
  background: rgba(76, 201, 240, 0.14);
  color: var(--sky);
  margin-bottom: 18px;
}

/* ===== CTA banner ===== */
.cta-banner {
  background:
    radial-gradient(1000px 400px at 100% 0%, rgba(76, 201, 240, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 64px auto;
  max-width: var(--maxw);
}

@media (max-width: 880px) {
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; margin: 32px 24px; }
}

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: #cfd8e8; margin: 0; }
.cta-banner .ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
@media (max-width: 880px) { .cta-banner .ctas { justify-content: flex-start; } }

/* ===== Page hero (smaller, for inner pages) ===== */
.page-hero {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(76, 201, 240, 0.18), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
}

.page-hero .container { max-width: 820px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: #cfd8e8; font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ===== Forms ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

.form-grid .full { grid-column: 1 / -1; }

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

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d4dce8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.96rem;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-2);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
}

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

.form-success {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  background: #e6f7ee;
  color: #0a6e3a;
  border: 1px solid #b8e3c8;
  border-radius: 10px;
  font-size: 0.95rem;
}

.form-success.show { display: block; }

/* ===== Contact info / cards ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--off);
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid var(--line-dark);
}

.contact-card .feature-icon {
  margin: 0;
  flex: 0 0 auto;
  width: 48px; height: 48px;
}

.contact-card h4 { margin: 0 0 4px; font-size: 1rem; }
.contact-card p { margin: 0; color: var(--steel); font-size: 0.92rem; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-dark);
  transition: transform 0.25s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item .scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  padding-bottom: 18px;
}

.gallery-item .label {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  background: rgba(10, 22, 40, 0.78);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

/* Scene backgrounds */
.scene-hill   { background: linear-gradient(180deg, #6ea8c4 0%, #4a7a9b 50%, #2d4a63 100%); }
.scene-desert { background: linear-gradient(180deg, #f4c98a 0%, #d99a55 60%, #8c5a2c 100%); }
.scene-coast  { background: linear-gradient(180deg, #a8d8e8 0%, #4ca6c5 60%, #1f5575 100%); }
.scene-cold   { background: linear-gradient(180deg, #cfe5ee 0%, #8ab4c6 60%, #3d5e74 100%); }
.scene-night  { background: linear-gradient(180deg, #1a2a47 0%, #0a1628 100%); }
.scene-defense{ background: linear-gradient(180deg, #4a5a44 0%, #2d3a2a 100%); }

/* ===== Timeline / steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
  counter-reset: stepc;
}

.step {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  position: relative;
}

.step::before {
  counter-increment: stepc;
  content: counter(stepc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sky-2);
  letter-spacing: 0.18em;
}

.step h3 { margin: 8px 0 6px; font-size: 1.1rem; }
.step p { margin: 0; font-size: 0.94rem; color: var(--steel); }

/* ===== Two-col content ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

/* ===== Tech stack list ===== */
.tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.tech-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.tech-item .feature-icon {
  width: 44px; height: 44px;
  margin: 0; flex: 0 0 auto;
}

.tech-item h4 { color: var(--white); font-size: 1rem; margin: 0 0 4px; }
.tech-item p { color: #b8c4d6; font-size: 0.9rem; margin: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: #b8c4d6;
  padding: 72px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h5 {
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

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

.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #b8c4d6; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--sky); }

.footer-tag {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  margin: 16px 0 12px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #8597af;
}

.social-row {
  display: flex; gap: 10px; margin-top: 14px;
}

.social-row a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #b8c4d6;
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.social-row a:hover {
  background: var(--sky-deep);
  color: var(--white);
  border-color: var(--sky-2);
}

/* ===== User-first philosophy banner ===== */
.philosophy {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(76, 201, 240, 0.18), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(0, 119, 182, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.philosophy .container {
  position: relative;
  z-index: 2;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  font-weight: 500;
  max-width: 920px;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.philosophy-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sky), var(--sky-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.philosophy-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 18px;
}

.philosophy-mantras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.mantra {
  font-size: 0.95rem;
  color: #cfd8e8;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mantra::before {
  content: "";
  width: 6px; height: 6px; margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sky-2);
  box-shadow: 0 0 10px var(--sky-2);
}

/* ===== Data flow pipeline ===== */
.flow {
  margin-top: 56px;
}

.flow-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
  position: relative;
}

@media (max-width: 880px) {
  .flow-pipeline { grid-template-columns: 1fr; }
}

.flow-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.flow-step .flow-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.18), rgba(0, 119, 182, 0.1));
  color: var(--sky);
  margin-bottom: 18px;
}

.flow-step h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.flow-step p {
  color: #b8c4d6;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.flow-step .flow-num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--sky);
  opacity: 0.7;
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 50%; right: -18px;
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--sky-2), transparent);
  transform: translateY(-50%);
  z-index: 1;
}

.flow-pipeline .flow-step:last-child::after { display: none; }

@media (max-width: 880px) {
  .flow-step::after {
    top: auto; right: auto;
    bottom: -16px; left: 50%;
    width: 2px; height: 22px;
    background: linear-gradient(180deg, var(--sky-2), transparent);
    transform: translateX(-50%);
  }
}

.flow-divider {
  text-align: center;
  margin: 64px auto 32px;
  position: relative;
}

.flow-divider span {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: 999px;
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flow-users {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 880px) {
  .flow-users { grid-template-columns: 1fr; }
}

.user-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.2s;
}

.user-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-2);
}

.user-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-2));
}

.user-card .user-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.2), rgba(0, 119, 182, 0.1));
  color: var(--sky);
  margin-bottom: 22px;
}

.user-card h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 6px;
}

.user-card .user-role {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

.user-card p.user-summary {
  color: #cfd8e8;
  font-size: 0.95rem;
  margin: 0 0 18px;
}

.user-card .user-outputs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.user-card .user-outputs li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #b8c4d6;
  font-size: 0.92rem;
  line-height: 1.45;
}

.user-card .user-outputs li::before {
  content: "";
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 3px;
  background: linear-gradient(135deg, var(--sky-2), var(--sky-deep));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* Section variant: same data → different formats callout */
.same-data-callout {
  margin: 56px auto 0;
  text-align: center;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(76, 201, 240, 0.08);
  border: 1px dashed rgba(76, 201, 240, 0.4);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.same-data-callout strong {
  color: var(--sky);
}

/* ===== Protected gallery imagery ===== */
.protected-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.protected-figure {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #1a2436 center/cover no-repeat;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  transition: transform 0.25s, box-shadow 0.2s;
}

.protected-figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.protected-figure::before {
  /* fully covers the visible area to block context-menu / save-as on the underlying bg */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: auto;
}

.protected-figure::after {
  content: "© WINDS TECHNOLOGIES";
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 22, 40, 0.55);
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
}

.protected-figure .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 22px 18px 14px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 500;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.85) 100%);
  pointer-events: none;
}

.protected-figure .caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 4px;
}

/* ===== Anti-spam contact images ===== */
.contact-png {
  display: inline-flex;
  align-items: center;
  height: 28px;
  vertical-align: middle;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

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

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

.badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.25);
  color: var(--sky);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}

.section-alt .badge,
section:not(.section-dark):not(.hero):not(.page-hero) .badge {
  background: rgba(0, 119, 182, 0.08);
  border-color: rgba(0, 119, 182, 0.18);
  color: var(--sky-deep);
}
