/* Windloot product page — ink canvas, cyan/purple lockup, site fonts. */

.windloot-page{
  --wl-ink:#0B0D10;
  --wl-tile:#16181b;
  --wl-cyan:#22D3EE;
  --wl-purple:#8B5CF6;
  --wl-white:#EDEEF2;
  --wl-muted:#B4BFC8;
  --wl-line:rgba(237,238,242,.14);
  --wl-grad:linear-gradient(135deg,var(--wl-cyan),var(--wl-purple));
  --bg:var(--wl-ink);
  --surface:var(--wl-tile);
  --text:var(--wl-white);
  --muted:var(--wl-muted);
  --coral:var(--wl-cyan);
  --line:var(--wl-line);
  --display:var(--sysreon-font-display);
  --body:var(--sysreon-font-body);
  background:var(--wl-ink);
  color:var(--wl-white);
  color-scheme:dark;
}

.windloot-page .site-header,
.windloot-page .site-footer{
  background:var(--wl-ink);
  border-color:var(--wl-line);
}

.windloot-page .site-header .brand>span,
.windloot-page .site-footer .brand>span{
  font-family:var(--sysreon-font-display);
  color:var(--wl-white);
}

.windloot-page .brand small,
.windloot-page .footer-bottom,
.windloot-page .footer-bottom button{
  color:var(--wl-muted);
}

.windloot-page nav>a:hover,
.windloot-page nav>a[aria-current],
.windloot-page .site-footer a:hover,
.windloot-page .footer-bottom button:hover{
  color:var(--wl-cyan);
}

.windloot-page .nav-cta{
  border-color:var(--wl-line);
  color:var(--wl-white);
}

.windloot-page .nav-cta:hover{
  border-color:var(--wl-cyan);
  color:var(--wl-ink);
  background:var(--wl-cyan);
}

.windloot-page .menu-toggle{
  color:var(--wl-white);
  border-color:var(--wl-line);
}

.windloot-page :focus-visible{
  outline:2px solid var(--wl-cyan);
  outline-offset:6px;
}

.windloot-page .skip{
  background:var(--wl-cyan);
  color:var(--wl-ink);
}

.windloot-page ::selection{
  background:var(--wl-cyan);
  color:var(--wl-ink);
}

/* ---- Hero ---- */

.wl-hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  max-width:1440px;
  margin:0 auto;
  padding:72px 48px 56px;
}

.wl-hero-field{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 12% 28%,rgba(34,211,238,.14),transparent 42%),
    radial-gradient(ellipse at 88% 18%,rgba(139,92,246,.16),transparent 46%);
}

.wl-gust{
  position:absolute;
  left:52%;
  height:0;
  border-radius:999px;
  border-top:solid var(--wl-cyan);
  opacity:.45;
}

.wl-gust-a{ top:26%; width:30%; border-top-width:6px; transform:rotate(-8deg); }
.wl-gust-b{ top:34%; width:26%; border-top-width:4px; transform:rotate(-6deg); opacity:.32; }
.wl-gust-c{ top:41%; width:22%; border-top-width:3px; transform:rotate(-4deg); opacity:.24; }

.wl-facet{
  position:absolute;
  right:8%;
  top:18%;
  width:220px;
  height:280px;
  clip-path:polygon(50% 8%, 92% 28%, 50% 96%, 8% 28%);
  opacity:.18;
}

.wl-facet-cyan{
  background:var(--wl-cyan);
  transform:translateX(-28px);
}

.wl-facet-purple{
  background:var(--wl-purple);
  transform:translateX(28px);
}

.wl-hero > :not(.wl-hero-field){
  position:relative;
  z-index:1;
}

.wl-lockup{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:28px;
}

.wl-mark{
  width:88px;
  height:88px;
  border-radius:22px;
  display:block;
}

.wl-wordmark{
  width:min(220px,52vw);
  height:auto;
  display:block;
}

.windloot-page .wl-hero h1{
  margin:0 0 18px;
  font-family:var(--sysreon-font-display);
  font-weight:700;
  font-size:clamp(52px,7vw,92px);
  letter-spacing:-.04em;
  line-height:1.02;
  color:var(--wl-white);
}

.wl-headline{
  margin:0 0 16px;
  max-width:22ch;
  font-family:var(--sysreon-font-display);
  font-weight:600;
  font-size:clamp(22px,2.6vw,32px);
  line-height:1.25;
  letter-spacing:-.03em;
  color:var(--wl-white);
}

.wl-subheadline{
  margin:0 0 28px;
  max-width:46ch;
  font-size:19px;
  line-height:1.6;
  color:var(--wl-muted);
}

.wl-intro{
  margin:0;
  max-width:62ch;
  font-size:17px;
  line-height:1.75;
  color:var(--wl-muted);
}

/* ---- Pillars ---- */

.wl-pillars{
  max-width:1440px;
  margin:0 auto;
  padding:24px 48px 16px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.wl-card{
  background:var(--wl-tile);
  border:1px solid var(--wl-line);
  border-radius:16px;
  padding:28px 26px 30px;
  box-shadow:inset 0 1px 0 rgba(34,211,238,.12);
  background-image:linear-gradient(180deg,rgba(34,211,238,.05),transparent 42%);
}

.wl-card:nth-child(2){
  box-shadow:inset 0 1px 0 rgba(139,92,246,.2);
  background-image:linear-gradient(180deg,rgba(139,92,246,.07),transparent 42%);
}

.wl-card:nth-child(3){
  box-shadow:inset 0 1px 0 rgba(34,211,238,.08);
  background-image:linear-gradient(135deg,rgba(34,211,238,.06),rgba(139,92,246,.06) 70%,transparent);
}

.wl-card h2{
  margin:0 0 12px;
  font-family:var(--sysreon-font-display);
  font-weight:600;
  font-size:24px;
  letter-spacing:-.03em;
  color:var(--wl-white);
}

.wl-card p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:var(--wl-muted);
}

/* ---- Gallery (GW-08 shots, 1600x1000) ---- */

.wl-gallery{
  max-width:1440px;
  margin:0 auto;
  padding:56px 48px 24px;
}

.wl-gallery h2{
  margin:0 0 28px;
  font-family:var(--sysreon-font-display);
  font-weight:600;
  font-size:clamp(28px,3vw,40px);
  color:var(--wl-white);
}

.wl-shots{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.wl-shot{
  margin:0;
}

.wl-shot img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/10;
  object-fit:contain;
  border-radius:12px;
  background:var(--wl-ink);
  border:1px solid var(--wl-line);
  box-shadow:
    0 0 0 1px rgba(34,211,238,.16),
    0 18px 40px rgba(0,0,0,.35);
}

.wl-shot figcaption{
  margin-top:12px;
  font-size:13px;
  line-height:1.5;
  color:var(--wl-muted);
}

/* ---- Status + CTA ---- */

.wl-status{
  max-width:1440px;
  margin:28px auto 0;
  padding:40px 48px 20px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:22px 32px;
  border-top:1px solid var(--wl-line);
}

.wl-status-line{
  margin:0;
  flex:1 1 28ch;
  font-size:18px;
  line-height:1.55;
  color:var(--wl-white);
}

.windloot-page .wl-cta.button.primary{
  background:var(--wl-cyan);
  color:var(--wl-ink);
  border-color:transparent;
  font-family:var(--sysreon-font-display);
  font-weight:700;
  letter-spacing:.02em;
  min-height:48px;
}

.windloot-page .wl-cta.button.primary:hover{
  background:var(--wl-white);
  color:var(--wl-ink);
}

/* ---- Family line ---- */

.wl-family{
  max-width:1440px;
  margin:0 auto 48px;
  padding:8px 48px 64px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.wl-family-label{
  font:500 11px/1.5 var(--sysreon-font-mono-data, var(--sysreon-font-mono));
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--wl-cyan);
}

.wl-family a{
  color:var(--wl-white);
  text-decoration:underline;
  text-underline-offset:4px;
  text-decoration-color:rgba(139,92,246,.7);
  max-width:52ch;
  font-size:16px;
  line-height:1.6;
}

.wl-family a:hover{
  color:var(--wl-cyan);
  text-decoration-color:var(--wl-cyan);
}

@media (max-width:1100px){
  .wl-hero,
  .wl-pillars,
  .wl-gallery,
  .wl-status,
  .wl-family{
    padding-left:28px;
    padding-right:28px;
  }
  .wl-facet{ width:160px; height:210px; right:4%; }
}

@media (max-width:800px){
  .wl-hero{ padding:48px 22px 36px; }
  .wl-pillars,
  .wl-gallery,
  .wl-status,
  .wl-family{
    padding-left:22px;
    padding-right:22px;
  }
  .wl-pillars,
  .wl-shots{
    grid-template-columns:1fr;
  }
  .wl-lockup{ gap:12px; }
  .wl-mark{ width:64px; height:64px; border-radius:16px; }
  .wl-wordmark{ width:160px; }
  .wl-hero h1{ font-size:clamp(44px,12vw,64px); }
  .wl-headline{ font-size:22px; max-width:none; }
  .wl-subheadline{ font-size:17px; }
  .wl-intro{ font-size:16px; }
  .wl-gust{ left:58%; opacity:.22; }
  .wl-gust-a,.wl-gust-b,.wl-gust-c{ width:36%; }
  .wl-facet{ opacity:.12; top:8%; }
  .wl-status{ padding-top:28px; }
  .wl-family{ padding-bottom:48px; }
}

@media (prefers-reduced-motion:reduce){
  .windloot-page,
  .windloot-page *,
  .windloot-page *:before,
  .windloot-page *:after{
    animation:none !important;
    transition:none !important;
  }
}

html[data-motion=off] .windloot-page,
html[data-motion=off] .windloot-page *,
html[data-motion=off] .windloot-page *:before,
html[data-motion=off] .windloot-page *:after{
  animation:none !important;
  transition:none !important;
}
