:root {
  --paper: #f7f3eb;
  --paper-deep: #eee7dc;
  --ink: #17201c;
  --muted: #626861;
  --green: #167a55;
  --green-dark: #0f563d;
  --mint: #dcece3;
  --peach: #ead8c7;
  --line: rgba(23, 32, 28, 0.14);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(31, 45, 37, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

main { overflow: clip; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid #e0a94f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 243, 235, 0.92);
  box-shadow: 0 8px 30px rgba(35, 43, 38, 0.05);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1280px, calc(100% - 48px));
  height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 6px 9px 6px 9px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--green);
  transform: rotate(-2deg);
}

.brand-mark span { font-family: var(--serif); font-size: 18px; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: #38413c;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links .nav-download {
  padding: 11px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
}
.nav-links .nav-download:hover { color: #fff; background: var(--green-dark); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.hero {
  min-height: 820px;
  padding-top: 156px;
  padding-bottom: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.eyebrow.light { color: #b9dac8; }

.hero h1, .section-heading h2, .gallery-heading h2, .privacy-copy h2,
.use-cases-intro h2, .download-card h2 {
  margin: 0;
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 { max-width: 720px; font-size: clamp(56px, 6.2vw, 92px); }
h1 em, h2 em { color: var(--green); font-family: var(--serif); font-weight: 400; }

.hero-intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }

.store-button {
  min-height: 60px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 20px rgba(23, 32, 28, 0.13);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.store-button:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(23, 32, 28, 0.18); }
.store-button > span:last-child { display: flex; flex-direction: column; font-size: 18px; font-weight: 650; line-height: 1.1; }
.store-button small { margin-bottom: 3px; font-size: 8px; font-weight: 700; letter-spacing: 0.12em; }
.play-mark { width: 25px; height: 28px; background: linear-gradient(145deg, #8ad5af 0 33%, #f2bd64 34% 66%, #ee7665 67%); clip-path: polygon(0 0, 100% 50%, 0 100%); }

.text-link { font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link span { margin-left: 5px; color: var(--green); }
.text-link:hover { color: var(--green); }
.hero-note { margin: 20px 0 0; color: #6a706b; font-size: 12px; }
.hero-note span { margin-right: 7px; color: var(--green); font-size: 8px; vertical-align: 1px; }

.hero-art { position: relative; height: 620px; display: grid; place-items: center; isolation: isolate; }
.orbit { position: absolute; z-index: -2; border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; background: var(--mint); }
.orbit-two { right: -30px; bottom: 35px; width: 180px; height: 180px; border: 1px solid rgba(22, 122, 85, 0.25); }
.app-shot { overflow: hidden; margin: 0; border: 10px solid var(--white); border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.hero-shot { z-index: 2; width: 286px; transform: rotate(2.5deg); }
.hero-shot img { width: 100%; height: auto; border-radius: 21px; }

.paper-note {
  position: absolute;
  z-index: 1;
  top: 85px;
  left: 12px;
  width: 250px;
  min-height: 176px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 22px 50px rgba(23, 32, 28, 0.1);
  transform: rotate(-10deg);
}
.paper-note > span { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: 0.14em; }
.paper-note strong { margin: 15px 0; display: block; font-family: var(--serif); font-size: 21px; line-height: 1.2; }
.paper-note i { width: 100%; height: 1px; margin-top: 8px; display: block; background: var(--line); }
.paper-note i:nth-of-type(2) { width: 82%; }
.paper-note i:nth-of-type(3) { width: 56%; }

.floating-label {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 999px;
  color: #303a34;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 12px 30px rgba(23, 32, 28, 0.1);
  font-size: 11px;
  font-weight: 700;
}
.floating-label span { margin-right: 5px; color: var(--green); }
.label-private { right: 0; top: 155px; }
.label-local { left: 26px; bottom: 95px; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255, 253, 248, 0.45); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 138px; padding: 28px 24px; display: grid; grid-template-columns: 34px 1fr; align-content: center; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid span { grid-row: 1 / 3; color: var(--green); font-family: var(--serif); font-size: 12px; }
.trust-grid strong { font-size: 15px; }
.trust-grid small { color: var(--muted); font-size: 11px; line-height: 1.5; }

.features { padding-top: 145px; padding-bottom: 150px; }
.section-heading { max-width: 820px; margin-bottom: 70px; }
.section-heading h2 { font-size: clamp(44px, 5.3vw, 72px); }
.section-heading > p:last-child { max-width: 540px; margin: 26px 0 0; color: var(--muted); font-size: 17px; }

.feature-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 18px; }
.feature-card {
  position: relative;
  min-height: 470px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.7);
}
.feature-card:nth-child(2), .feature-card:nth-child(3) { min-height: 390px; }
.feature-index { margin-bottom: 72px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; }
.feature-card h3 { max-width: 440px; margin: 0 0 14px; font-size: clamp(27px, 3vw, 38px); letter-spacing: -0.045em; line-height: 1.08; }
.feature-card > div:nth-child(2) > p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; }

.feature-write { background: var(--mint); }
.format-preview {
  position: absolute;
  right: -20px;
  bottom: -55px;
  width: 58%;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 32, 28, 0.1);
  transform: rotate(-2deg);
}
.format-toolbar { margin-bottom: 20px; display: flex; gap: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.format-preview > strong { font-family: var(--serif); font-size: 20px; }
.format-preview > p { margin: 8px 0 14px; font-family: var(--serif); font-size: 13px; line-height: 1.45; }
.markdown-pill { padding: 5px 9px; border-radius: 999px; color: var(--green-dark); background: var(--mint); font: 700 9px var(--sans); }

.feature-organize { background: #fffaf3; }
.tag-cloud { position: absolute; right: -14px; bottom: 30px; width: 66%; display: flex; flex-wrap: wrap; gap: 9px; transform: rotate(-3deg); }
.tag-cloud span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 6px 20px rgba(23, 32, 28, 0.05); font-size: 11px; }
.tag-cloud .active { color: #fff; border-color: var(--green); background: var(--green); }

.feature-share { background: var(--peach); }
.share-preview { position: absolute; right: 30px; bottom: -35px; width: 48%; min-height: 220px; padding: 24px; border: 1px solid rgba(23, 32, 28, 0.15); border-radius: 8px; background: #f9f1e8; box-shadow: 0 15px 40px rgba(23, 32, 28, 0.08); transform: rotate(3deg); }
.share-preview > span { font-family: var(--serif); font-size: 11px; }
.share-preview > strong { margin-top: 28px; display: block; font-family: var(--serif); font-size: 19px; line-height: 1.25; }
.share-preview > small { position: absolute; right: 20px; bottom: 20px; font-size: 8px; }

.feature-export { background: #e5eadc; }
.export-row { position: absolute; right: 34px; bottom: 42px; display: flex; gap: 10px; }
.export-row span { width: 62px; height: 76px; display: grid; place-items: end center; padding-bottom: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 5px 6px 0 rgba(22, 122, 85, 0.13); font-size: 9px; font-weight: 800; }

.screenshots { padding: 132px 0 118px; overflow: hidden; color: #f6f3ea; background: var(--green-dark); }
.gallery-heading { margin-bottom: 50px; display: flex; align-items: end; justify-content: space-between; }
.gallery-heading h2 { font-size: clamp(52px, 6vw, 80px); }
.gallery-controls { display: flex; gap: 9px; }
.gallery-controls button { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; color: #fff; background: transparent; cursor: pointer; transition: color 160ms ease, background-color 160ms ease; }
.gallery-controls button:hover { color: var(--green-dark); background: #fff; }

.gallery-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px max(0px, calc((100vw - 1180px) / 2)) 24px;
  margin-inline: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card { flex: 0 0 min(333px, 78vw); margin: 0; scroll-snap-align: start; }
.gallery-card img { width: 100%; border: 8px solid #f9f5ed; border-radius: 24px; box-shadow: 0 24px 45px rgba(0,0,0,0.18); }
.gallery-card figcaption { padding: 18px 4px 0; display: flex; gap: 18px; align-items: baseline; }
.gallery-card figcaption span { color: #8bb69f; font: 13px var(--serif); }
.gallery-card figcaption strong { font-size: 13px; }
.gallery-footer { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; }
.gallery-dots { display: flex; gap: 10px; }
.gallery-dots button { position: relative; width: 36px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; transition: width 180ms ease; }
.gallery-dots button::after { content: ""; position: absolute; top: 20px; right: 4px; bottom: 20px; left: 4px; border-radius: 4px; background: rgba(255,255,255,0.28); transition: background-color 180ms ease; }
.gallery-dots button[aria-current="true"] { width: 52px; }
.gallery-dots button[aria-current="true"]::after { background: #fff; }
.gallery-status { margin: 0; color: #9db6a8; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.privacy { padding-top: 150px; padding-bottom: 130px; }
.privacy-card { position: relative; overflow: hidden; padding: 76px; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 90px; border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: 0 24px 80px rgba(23,32,28,0.07); }
.privacy-card::before { content: ""; position: absolute; top: -170px; right: -130px; width: 430px; height: 430px; border-radius: 50%; background: var(--mint); opacity: 0.7; }
.privacy-copy, .privacy-list { position: relative; z-index: 1; }
.privacy-copy h2 { font-size: clamp(48px, 5.2vw, 70px); }
.privacy-copy > p:last-child { margin: 28px 0 0; color: var(--muted); font-size: 16px; }
.privacy-list { border-top: 1px solid var(--line); }
.privacy-list article { padding: 23px 0; display: grid; grid-template-columns: 48px 1fr; border-bottom: 1px solid var(--line); }
.privacy-list article > span { color: var(--green); font: 12px var(--serif); }
.privacy-list strong { font-size: 15px; }
.privacy-list p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }

.use-cases { padding-bottom: 145px; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; }
.use-cases-intro h2 { max-width: 650px; font-size: clamp(40px, 4vw, 56px); line-height: 1.04; }
.use-case-list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); list-style: none; }
.use-case-list li { padding: 19px 6px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 650; }
.use-case-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.use-case-list span { margin-right: 9px; color: var(--green); }

.download { padding-bottom: 56px; }
.download-card { position: relative; min-height: 580px; padding: 94px 48px; overflow: hidden; border-radius: 30px; color: #fff; background: var(--green); text-align: center; }
.download-card::before, .download-card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; }
.download-card::before { width: 550px; height: 550px; top: -380px; left: -140px; }
.download-card::after { width: 470px; height: 470px; right: -260px; bottom: -310px; }
.download-card .eyebrow { justify-content: center; }
.download-card h2 { font-size: clamp(54px, 6.4vw, 86px); }
.download-card h2 em { color: #d6eddf; }
.download-card > p:not(.eyebrow) { max-width: 520px; margin: 28px auto 34px; color: #d9eee3; font-size: 16px; }
.store-button-light { position: relative; z-index: 2; color: var(--ink); border-color: #fff; background: #fff; box-shadow: none; }
.store-button-light:hover { color: #fff; border-color: var(--green-dark); background: var(--green-dark); }
.download-lines { position: absolute; inset: 0; opacity: 0.1; background-image: repeating-linear-gradient(0deg, transparent 0 55px, #fff 56px 57px); }

.site-footer { min-height: 126px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; }
.site-footer > p { margin: 0; color: var(--muted); font-size: 11px; }
.site-footer > p:nth-child(2) { text-align: center; }
.site-footer > p:last-child { text-align: right; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.25,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr minmax(350px, 0.75fr); gap: 30px; }
  .hero-art { transform: scale(0.9); transform-origin: center right; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 1px solid var(--line); }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .privacy-card { padding: 58px; gap: 55px; }
}

@media (max-width: 800px) {
  .section-shell, .nav-shell { width: min(100% - 32px, 680px); }
  .nav-shell { height: 72px; }
  html:not(.js) .site-header { border-bottom-color: var(--line); background: var(--paper); }
  html:not(.js) .nav-shell { height: auto; min-height: 72px; padding: 12px 0; flex-wrap: wrap; }
  html:not(.js) .nav-links { width: 100%; padding-top: 10px; display: flex; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line); }
  html:not(.js) .nav-links a { font-size: 12px; }
  html:not(.js) .nav-links .nav-download { padding: 5px 10px; }
  .js .menu-toggle { display: flex; }
  .js .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    padding: 22px 24px 28px;
    display: grid;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px rgba(23,32,28,0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .js .nav-links.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .js .nav-links a { min-height: 48px; padding: 12px 8px; display: flex; align-items: center; font-size: 16px; }
  .js .nav-links .nav-download { margin-top: 8px; justify-content: center; }

  .hero { min-height: 0; padding-top: 132px; grid-template-columns: 1fr; text-align: left; }
  .hero-copy { position: relative; z-index: 3; }
  .hero h1 { font-size: clamp(50px, 13vw, 76px); }
  .hero-art { height: 570px; margin-top: -10px; transform: scale(0.92); transform-origin: top center; }
  .orbit-one { width: 460px; height: 460px; }
  .paper-note { left: 4%; }
  .label-private { right: 4%; }
  .label-local { left: 8%; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card:nth-child(2), .feature-card:nth-child(3) { min-height: 430px; }
  .format-preview { width: 52%; }
  .privacy-card { grid-template-columns: 1fr; gap: 55px; }
  .use-cases { grid-template-columns: 1fr; gap: 55px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 16px; padding: 30px 0; }
  .site-footer > p:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  .section-shell, .nav-shell { width: min(100% - 24px, 480px); }
  .hero { padding-top: 118px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(46px, 14vw, 67px); }
  .hero-intro { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .store-button { min-height: 58px; }
  .hero-art { height: 500px; margin: 20px -20px -10px; transform: scale(0.78); transform-origin: top center; }
  .paper-note { left: -2%; }
  .label-private { right: 0; }
  .label-local { left: 3%; bottom: 72px; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { min-height: 128px; padding: 22px 14px; grid-template-columns: 26px 1fr; }
  .trust-grid small { font-size: 10px; }

  .features { padding-top: 98px; padding-bottom: 100px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2 { font-size: 43px; }
  .feature-card { min-height: 440px; padding: 25px; border-radius: 18px; }
  .feature-index { margin-bottom: 46px; }
  .feature-card h3 { font-size: 30px; }
  .format-preview { right: -10px; width: 74%; }
  .tag-cloud { right: -20px; width: 82%; }
  .share-preview { right: 20px; width: 62%; }
  .export-row { right: 24px; bottom: 32px; }

  .screenshots { padding: 92px 0 76px; }
  .gallery-heading { align-items: flex-end; }
  .gallery-heading h2 { font-size: 47px; }
  .gallery-controls button { width: 44px; height: 44px; }
  .gallery-track { margin-inline: -12px; padding-inline: 12px; gap: 14px; }
  .gallery-card { flex-basis: min(294px, 78vw); }
  .gallery-status { display: none; }

  .privacy { padding-top: 95px; padding-bottom: 95px; }
  .privacy-card { padding: 42px 24px; border-radius: 20px; }
  .privacy-copy h2 { font-size: 46px; }
  .privacy-list article { grid-template-columns: 38px 1fr; }

  .use-cases { padding-bottom: 95px; }
  .use-cases-intro h2 { font-size: 40px; }
  .use-case-list li { padding: 16px 4px; font-size: 12px; }

  .download { width: 100%; padding-bottom: 25px; }
  .download-card { min-height: 520px; padding: 76px 22px; border-radius: 0; }
  .download-card h2 { font-size: 52px; }
  .site-footer { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
