:root {
  --ink: #090b0c;
  --panel: #101315;
  --panel-2: #15191b;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #a7acac;
  --paper: #f4f1e9;
  --sun: #f5a623;
  --sun-soft: #ffd37a;
  --max: 1220px;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--sun-soft); outline-offset: 4px; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--sun);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(to bottom, rgba(8,10,11,0.92), rgba(8,10,11,0.55));
  backdrop-filter: blur(14px);
  transition: background 180ms ease;
}

.site-header.is-scrolled { background: rgba(8,10,11,0.96); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 0.79rem;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  gap: 2px;
  transform: skewX(-13deg);
}

.brand-mark span { width: 7px; height: 19px; background: var(--sun); }
.brand-mark span:nth-child(2) { opacity: 0.7; }
.brand-mark span:nth-child(3) { opacity: 0.4; }

.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.8rem); }

.site-nav a {
  position: relative;
  color: #d4d6d4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: max(820px, min(100svh, 980px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image, .hero-shade, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-image { object-fit: cover; object-position: center; }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,7,8,0.95) 0%, rgba(5,7,8,0.8) 35%, rgba(5,7,8,0.18) 66%, rgba(5,7,8,0.12) 100%),
    linear-gradient(0deg, rgba(5,7,8,0.8) 0%, transparent 38%);
}

.hero-grid {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 67%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  padding: clamp(9rem, 17vh, 12rem) var(--pad) 2rem;
}

.eyebrow, .kicker, .section-label, .mode-status {
  margin: 0 0 1.4rem;
  color: var(--sun);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 0.8rem; }
.eyebrow-line { width: 38px; height: 2px; background: var(--sun); }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 { font-size: clamp(3.25rem, 5.7vw, 5.5rem); line-height: 1.02; }
h1 em { color: var(--sun-soft); font-weight: 400; }
h2 { font-size: clamp(2.55rem, 5.2vw, 5rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }

.hero-lede {
  max-width: 590px;
  margin-bottom: 2.2rem;
  color: #d9dbd9;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--sun); color: var(--ink); }
.button-primary:hover { background: var(--sun-soft); }
.button-ghost { border-color: rgba(255,255,255,0.35); background: rgba(8,10,11,0.2); }
.button-ghost:hover { border-color: var(--paper); }

.concept-note {
  margin-top: 1rem;
  color: #b8bbb8;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.spec-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: auto var(--pad) 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(8,10,11,0.84);
  backdrop-filter: blur(12px);
}

.spec-rail div { padding: 1.15rem clamp(0.8rem, 2vw, 1.6rem); border-right: 1px solid var(--line); }
.spec-rail div:last-child { border-right: 0; }
.spec-rail dt { font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.55rem); color: var(--sun-soft); }
.spec-rail dd { margin: 0; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.section-pad { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.section-pad[id] { scroll-margin-top: 74px; }
.section-pad > * { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }

.intro { background: var(--paper); color: var(--ink); }
.section-label { color: #9a6400; }
.intro-copy { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 1.25fr); gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.intro-copy h2 { max-width: 800px; margin-bottom: 0; }
.intro-copy p { margin-bottom: 1.25rem; color: #414544; font-size: 1.08rem; }
.intro-copy .story-question { margin-bottom: 0; color: var(--ink); font-size: 1.25rem; font-weight: 600; }

.impact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(0,0,0,0.25);
}

.impact-strip article { padding: 1.6rem clamp(1rem, 2vw, 2rem); border-right: 1px solid rgba(0,0,0,0.2); }
.impact-strip article:last-child { border-right: 0; }
.impact-strip h3 { margin-bottom: 0.7rem; color: #9a6400; font-weight: 900; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }
.impact-strip p { margin: 0; font-size: 0.95rem; line-height: 1.5; }
.accessibility-note { margin-top: 2rem; padding: .5rem 0 .5rem 1.5rem; border-left: 3px solid var(--sun); }
.accessibility-note h3 { margin-bottom: .7rem; }
.accessibility-note p { max-width: 900px; margin-bottom: 0; color: #414544; }

.system { background: var(--ink); }
.section-heading { display: grid; grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr); gap: 3rem; }
.section-heading > div:last-child { max-width: 850px; }
.section-heading h2 { margin-bottom: clamp(2.8rem, 6vw, 5rem); }

.concept-plate {
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #d9dbda;
}
.concept-plate img { display: block; width: 100%; height: auto; }
.concept-plate figcaption {
  display: grid;
  grid-template-columns: minmax(180px,.35fr) 1fr;
  gap: 2rem;
  padding: 1.1rem 1.4rem;
  background: rgba(7,9,10,.9);
}
.concept-plate figcaption span { color: var(--sun); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.concept-plate figcaption p { max-width: 720px; margin: 0; color: #c0c4c3; font-size: .86rem; line-height: 1.5; }

.prototype-specs { margin-bottom: 2rem; }
.prototype-specs h3, .array-note h3 { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 500; }
.technical-specs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.technical-specs > div { padding: 1.3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.technical-specs dt { margin-bottom: .7rem; color: var(--sun); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.technical-specs dd { margin: 0; font-size: 1.15rem; font-weight: 600; }
.technical-specs small { display: block; margin-top: .5rem; color: var(--muted); font-size: .82rem; font-weight: 400; line-height: 1.5; }
.array-note { margin-bottom: 2rem; padding: 1.5rem 2rem; border-left: 3px solid var(--sun); background: var(--panel); }
.array-note h3 { margin-bottom: .75rem; }
.array-note p { max-width: 960px; margin-bottom: .75rem; color: var(--muted); }
.array-note p:last-child { margin-bottom: 0; }
.array-note strong { color: var(--paper); }

.mode-layout { display: grid; grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr); border: 1px solid var(--line); }
.mode-controls { display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.mode-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding: 1.3rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #c4c8c7;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.mode-tab:last-child { border-bottom: 0; }
.mode-tab span { color: #777e7d; font-size: 0.73rem; }
.mode-tab.is-active { background: var(--sun); color: var(--ink); }
.mode-tab.is-active span { color: rgba(9,11,12,0.55); }
.mode-tab:focus-visible { outline: 3px solid var(--sun-soft); outline-offset: -4px; }

.mode-stage { display: grid; align-items: center; background: var(--panel); }
.mode-stage:focus-visible { outline: 3px solid var(--sun-soft); outline-offset: -4px; }
.mode-copy { max-width: 780px; padding: clamp(1.5rem, 3vw, 3rem); }
.mode-copy h3 { margin-bottom: 1rem; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.mode-copy > p:not(.mode-status) { color: var(--muted); }
.mode-copy ul { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.mode-copy li { padding: .65rem 0 .65rem 1.2rem; border-top: 1px solid var(--line); color: #d3d6d5; font-size: .92rem; }
.mode-copy li::before { content: "+"; float: left; margin-left: -1.2rem; color: var(--sun); font-weight: 900; }

.energy-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; margin-top: 2rem; border: 1px solid var(--line); }
.energy-flow div { padding: 1.3rem; }
.energy-flow b { display: block; color: var(--sun); font-size: .68rem; }
.energy-flow span { display: block; font-weight: 800; }
.energy-flow small { color: var(--muted); }
.energy-flow i { color: var(--sun); font-style: normal; }

.resilience { background: var(--paper); color: var(--ink); }
.resilience .kicker { color: #9a6400; }
.resilience-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid rgba(0,0,0,.22); }
.resilience-card { position: relative; min-height: 340px; padding: clamp(2rem, 4vw, 3.5rem); border-right: 1px solid rgba(0,0,0,.18); border-bottom: 1px solid rgba(0,0,0,.18); }
.resilience-card:nth-child(2n) { border-right: 0; }
.resilience-card:nth-child(n+3) { border-bottom: 0; }
.card-index { position: absolute; top: 1.1rem; right: 1.3rem; color: #9b9b93; font-size: .73rem; }
.resilience-card h3 { margin: 2rem 0 .8rem; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.resilience-card p { max-width: 470px; margin-bottom: 0; color: #4b4d4b; }
.weather-icon { position: relative; width: 100px; height: 70px; color: #a66a00; }
.weather-icon.dust i { display: block; width: 84px; height: 2px; margin: 15px 0; background: currentColor; transform: skewX(-30deg); }
.weather-icon.dust i:nth-child(2) { width: 58px; margin-left: 25px; }
.weather-icon.cloud { width: 78px; height: 35px; margin-top: 20px; border: 2px solid currentColor; border-radius: 30px; }
.weather-icon.cloud::before, .weather-icon.cloud::after { content: ""; position: absolute; border: 2px solid currentColor; background: var(--paper); border-radius: 50%; }
.weather-icon.cloud::before { width: 34px; height: 34px; left: 10px; top: -21px; border-bottom-color: transparent; }
.weather-icon.cloud::after { width: 27px; height: 27px; right: 8px; top: -13px; border-bottom-color: transparent; }
.weather-icon.half { border: 2px solid currentColor; transform: skewY(-7deg); }
.weather-icon.half::after { content: ""; position: absolute; width: 2px; height: 70px; left: 50%; background: currentColor; }
.weather-icon.half i { position: absolute; inset: 9px 9px 9px 58%; background: repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 8px); }
.weather-icon.heat { width: 62px; height: 62px; border: 2px solid currentColor; border-radius: 50%; }
.weather-icon.heat::before, .weather-icon.heat::after { content: ""; position: absolute; left: 29px; top: -13px; width: 2px; height: 86px; background: currentColor; transform: rotate(45deg); }
.weather-icon.heat::after { transform: rotate(-45deg); }
.weather-icon.heat i { position: absolute; inset: 15px; border-radius: 50%; background: var(--sun); }

.field-test { background: var(--ink); }
.field-test .section-heading h2 { margin-bottom: 2rem; }
.field-intro { margin-top: 0; margin-bottom: 2.5rem; color: #c0c4c3; font-size: 1.12rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); background: var(--panel); }
.field-card { padding: clamp(1.5rem, 3vw, 3rem); }
.field-card + .field-card { border-left: 1px solid var(--line); }
.field-card h3 { font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.detail-list { margin: 0; padding: 0; list-style: none; }
.detail-list li { padding: .85rem 0 .85rem 1.2rem; border-top: 1px solid var(--line); color: #d3d6d5; }
.detail-list li::before { content: "+"; float: left; margin-left: -1.2rem; color: var(--sun); font-weight: 900; }
.field-note { margin-top: 2rem; margin-bottom: 0; color: var(--muted); font-size: .95rem; }

.open-source { background: #171b1d; }
.open-panel { display: grid; grid-template-columns: .85fr 1.15fr; border: 1px solid var(--line); }
.open-copy { padding: clamp(2rem, 5vw, 5rem); background: var(--sun); color: var(--ink); }
.open-copy .section-label, .open-copy .kicker { color: #553600; }
.open-copy h2 { font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.open-copy > p:last-child { max-width: 570px; margin-bottom: 0; }
.deliverable-list { margin: 0; padding: 0; list-style: none; }
.deliverable-list li { display: grid; grid-template-columns: 42px 1fr auto; gap: 1rem; align-items: center; padding: 1.6rem clamp(1.2rem, 3vw, 2.5rem); border-bottom: 1px solid var(--line); }
.deliverable-list li:last-child { border-bottom: 0; }
.deliverable-list > li > span { color: var(--sun); font-size: .72rem; }
.deliverable-list b, .deliverable-list small { display: block; }
.deliverable-list small { margin-top: .25rem; color: var(--muted); line-height: 1.4; }
.deliverable-list em { color: #939998; font-size: .64rem; font-style: normal; letter-spacing: .13em; }

.roadmap { background: var(--paper); color: var(--ink); }
.roadmap .kicker { color: #9a6400; }
.timeline { margin-top: 0; padding: 0; list-style: none; border-top: 1px solid rgba(0,0,0,.25); }
.timeline li { display: grid; grid-template-columns: minmax(90px,.25fr) 1fr; border-bottom: 1px solid rgba(0,0,0,.2); }
.timeline-marker { padding: 2rem 1rem 2rem 0; color: #9a6400; font-family: Georgia, serif; font-size: 2rem; }
.timeline li > div { display: grid; grid-template-columns: minmax(130px,.35fr) minmax(220px,.7fr) minmax(280px,1fr); gap: 2rem; align-items: start; padding: 2rem 0 2rem 2rem; border-left: 1px solid rgba(0,0,0,.2); }
.timeline p { color: #8a5a00; font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.timeline h3 { margin: 0; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; }
.timeline small { color: #4c4f4d; font-size: .9rem; line-height: 1.55; }

.closing { position: relative; min-height: 620px; display: grid; align-items: center; overflow: hidden; }
.closing-copy { position: relative; z-index: 2; }
.closing-copy h2 { max-width: 900px; }
.closing-copy > p:not(.kicker) { color: #c0c4c3; }
.success-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2rem; max-width: 980px; margin-bottom: 2rem; }
.closing-graphic { position: absolute; width: min(56vw,700px); aspect-ratio: 1; right: -8vw; top: 50%; transform: translateY(-50%) rotate(18deg); }
.closing-graphic span { position: absolute; inset: calc(var(--i, 0) * 12%); border: 1px solid rgba(245,166,35,.22); }
.closing-graphic span:nth-child(2) { --i: 1; }
.closing-graphic span:nth-child(3) { --i: 2; }
.closing-graphic span:nth-child(4) { --i: 3; background: rgba(245,166,35,.08); }

.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem 2rem; padding: 1.5rem var(--pad); border-top: 1px solid var(--line); color: #a7acac; font-size: .72rem; letter-spacing: .04em; }
.site-footer > div { display: flex; align-items: center; gap: .7rem; color: #c7cbca; }
.footer-mark { width: 22px; height: 10px; border-top: 3px solid var(--sun); border-bottom: 3px solid var(--sun); transform: skewX(-15deg); }
.site-footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: .65rem 1rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { min-height: 66px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; inset: 66px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 0 var(--pad) 1rem; background: rgba(8,10,11,.98); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .hero { min-height: max(790px, 100svh); }
  .hero-image { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,7,8,.94), rgba(5,7,8,.52)), linear-gradient(0deg, rgba(5,7,8,.92), transparent 55%); }
  .hero-content { padding-top: 8.5rem; }
  .intro-copy, .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .mode-layout { grid-template-columns: 1fr; }
  .concept-plate figcaption { grid-template-columns: 1fr; gap: .4rem; }
  .technical-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mode-controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .mode-tab { min-height: 64px; padding: 1rem 1.3rem; }
  .energy-flow { grid-template-columns: 1fr 1fr; }
  .energy-flow i { display: none; }
  .energy-flow div { border-bottom: 1px solid var(--line); }
  .open-panel { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .field-card + .field-card { border-left: 0; border-top: 1px solid var(--line); }
  .timeline li > div { grid-template-columns: 1fr; gap: .5rem; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

@media (max-width: 620px) {
  .brand { font-size: .7rem; }
  .hero-content { width: 100%; padding-right: 1.15rem; }
  h1 { font-size: clamp(2.6rem, 10.5vw, 4.2rem); }
  .spec-rail { margin-inline: 0; grid-template-columns: repeat(2,1fr); }
  .spec-rail div { border-bottom: 1px solid var(--line); }
  .spec-rail div:nth-child(2) { border-right: 0; }
  .spec-rail div:nth-child(n+3) { border-bottom: 0; }
  .impact-strip, .resilience-grid { grid-template-columns: 1fr; }
  .impact-strip article, .resilience-card { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.2); }
  .impact-strip article:last-child, .resilience-card:last-child { border-bottom: 0; }
  .resilience-card:nth-child(3) { border-bottom: 1px solid rgba(0,0,0,.2); }
  .mode-copy { padding: 1.5rem; }
  .technical-specs { grid-template-columns: 1fr; }
  .array-note { padding: 1.5rem; }
  .success-list { grid-template-columns: 1fr; }
  .energy-flow { grid-template-columns: 1fr; }
  .deliverable-list li { grid-template-columns: 32px 1fr; }
  .deliverable-list em { grid-column: 2; }
  .timeline li { grid-template-columns: 58px 1fr; }
  .timeline li > div { padding-left: 1.1rem; }
  .closing { min-height: 540px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
