/* ============================================================
   MAESTRO — Global Stylesheet
   maestrosai.com
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #0a0a0a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; }
p  { font-size: 1rem; line-height: 1.75; }

/* ---------- Color tokens ---------- */
:root {
  --black:   #0a0a0a;
  --white:   #ffffff;
  --navy:    #1a1a2e;
  --offwhite:#f8f6f0;
  --cta:     #333333;
  --muted:   #666666;
  --border:  #e0e0e0;
  --accent:  #3b82f6;
  --accent-dim: rgba(59, 130, 246, 0.15);
  --accent-border: rgba(59, 130, 246, 0.3);
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Accent line */
.accent-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

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

.btn-light {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}
.btn-light:hover { background: transparent; color: var(--white); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-dark:hover { background: transparent; color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-accent:hover { background: transparent; color: var(--accent); }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav-logo span { font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links > li > a,
.nav-links > li > button {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--white); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 280px;
  padding: 8px 0;
  z-index: 200;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: #fff; }

.chevron {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.5);
  margin-left: 2px;
  transition: transform 0.2s;
}
.dropdown:hover .chevron { transform: rotate(180deg); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  background: #0f0f0f;
  padding: 20px 5%;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.nav-mobile.open { display: block; }

.nav-mobile a, .nav-mobile .mobile-section-title {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-section-title {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 18px !important;
  border-bottom: none !important;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(26,26,70,0.85) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 15%, rgba(59,130,246,0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 90% 80%, rgba(20,20,50,0.6) 0%, transparent 60%);
}

/* Dot grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: italic; font-weight: 300; display: block; margin-top: 8px; color: rgba(255,255,255,0.65); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 0 40px;
  font-weight: 300;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(26,26,70,0.8) 0%, transparent 65%),
              radial-gradient(ellipse at 75% 20%, rgba(59,130,246,0.06) 0%, transparent 55%);
}

/* Dot grid on page heroes too */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 620px; margin-top: 20px; font-size: 1.05rem; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--black);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ---------- Section variants ---------- */
.section-dark   { background: var(--black);   color: var(--white); }
.section-light  { background: var(--white);   color: var(--black); }
.section-offwhite { background: var(--offwhite); color: var(--black); }
.section-navy   { background: var(--navy);    color: var(--white); }
.section-mid    { background: #0f0f0f; color: var(--white); }

/* ---------- Three columns block ---------- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 900px) { .three-col { grid-template-columns: 1fr; gap: 40px; } }

.question-block { padding: 48px 0; border-top: 1px solid var(--border); }
.question-block:first-child { border-top: none; }

.question-block h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}

.question-block blockquote {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.question-block cite {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-style: normal;
}

/* ---------- Testimonial ---------- */
.testimonial-section {
  background: var(--white);
  text-align: center;
  padding: 100px 0;
}

.testimonial-text {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.65;
  color: var(--black);
}

.testimonial-cite {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Pull quote ---------- */
.pull-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.65;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin: 48px 0;
  color: var(--black);
  font-style: italic;
}

.section-dark .pull-quote { color: rgba(255,255,255,0.75); }

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: #f5e642;
  color: var(--black);
  padding: 100px 0;
  text-align: center;
}

.newsletter-section h2 { margin-bottom: 12px; }
.newsletter-section p  { color: #555; margin-bottom: 40px; }

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto 16px;
}

.newsletter-form input {
  flex: 1 1 180px;
  padding: 14px 18px;
  border: 2px solid var(--black);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input:focus { border-color: #0a0a0a; }

.newsletter-privacy {
  font-size: 0.78rem;
  color: #777;
  margin-top: 10px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  border: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: translateY(-2px); }

.card-dark {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.card-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.card h3 { margin-bottom: 12px; }
.card p  { color: var(--muted); font-size: 0.95rem; }
.card-dark p { color: rgba(255,255,255,0.6); }
.card-dark h3 { color: var(--white); }

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

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

.product-item {
  background: #0a0a0a;
  padding: 48px 36px;
  transition: background 0.25s;
  position: relative;
}

.product-item:hover { background: #111; }

.product-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.product-item h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.product-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.7;
}

.product-item .product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.product-item:hover .product-link { color: var(--white); }

/* ---------- Work list (Section 9) ---------- */
.work-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.work-list li {
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
}

.work-list li:last-child { border-bottom: none; }

.work-list li::before {
  content: "\2192  ";
  color: var(--accent);
}

.work-list-detail { margin-top: 6px; font-weight: 400; color: #555; font-size: 0.88rem; }

/* ---------- Section image ---------- */
.section-image {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* ---------- Divider ---------- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.divider-dark { border-color: rgba(255,255,255,0.08); }

/* ---------- Coming soon ---------- */
.coming-soon {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.coming-soon h2 { font-size: 1.2rem; font-weight: 400; }

/* ---------- Marquee / Ticker ---------- */
.marquee-strip {
  background: #0a0a0a;
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-inner {
  display: inline-block;
  animation: marquee 50s linear infinite;
}

.marquee-inner span {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0 60px;
  color: rgba(255,255,255,0.55);
}

.marquee-inner .marquee-sep {
  color: var(--accent);
  opacity: 0.8;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 40px;
}

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

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

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ---------- Form styling ---------- */
.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Responsive nav ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---------- Misc helpers ---------- */
.label-pill {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.6;
}

.section-title-block { margin-bottom: 64px; }
.section-title-block p { color: var(--muted); margin-top: 16px; max-width: 580px; }
.section-dark .section-title-block p { color: rgba(255,255,255,0.5); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

.feature-list { margin-top: 28px; }
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-list li::before {
  content: '\2192';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Impact acronym ---------- */
.impact-acronym {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  font-style: italic;
}

/* ---------- Impact cards ---------- */
.make-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) { .make-impact-grid { grid-template-columns: 1fr; } }

.impact-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.impact-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }

.impact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.impact-card ul { list-style: none; padding: 0; margin: 0; }
.impact-card ul li {
  padding: 6px 0;
  color: #555;
  font-size: 0.95rem;
}
.impact-card ul li::before { content: "\2713  "; color: var(--accent); font-weight: 700; }
.impact-card p { color: #555; font-size: 0.95rem; line-height: 1.7; }

/* ---------- Scroll reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  .reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal-left.visible { opacity: 1; transform: none; }

  .reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal-right.visible { opacity: 1; transform: none; }

  .reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal-scale.visible { opacity: 1; transform: none; }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ---------- Page animation canvases ---------- */
canvas[data-anim] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* ---------- Hero geometric animations ---------- */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.geo-shape {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  opacity: var(--op, 1);
  will-change: transform;
  animation: geoFloat var(--dur) ease-in-out var(--delay, 0s) infinite;
}

.geo-shape svg {
  width: 100%;
  height: 100%;
}

@keyframes geoFloat {
  0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
  33%       { transform: translateY(-14px) rotate(calc(var(--rot, 0deg) + 7deg)); }
  66%       { transform: translateY(7px) rotate(calc(var(--rot, 0deg) - 4deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .geo-shape { animation: none; }
}
