:root {
  color-scheme: light;
  --page: #f6f2e9;
  --surface: #fdfaf2;
  --surface-soft: #efe9dc;
  --text: #1a1612;
  --secondary: #6f6457;
  --tertiary: #a89c89;
  --line: rgba(26, 22, 18, 0.16);
  --line-soft: rgba(26, 22, 18, 0.1);
  --accent: #9a7a36;
  --accent-strong: #7a5e26;
  --accent-soft: rgba(154, 122, 54, 0.12);
  --accent-glow: rgba(154, 122, 54, 0.22);
  --glass: rgba(246, 242, 233, 0.82);
  --window: #fdfaf2;
  --window-bar: #efe9dc;
  --sidebar: #f6f2e9;
  --paper: #ffffff;
  --shadow: 0 30px 80px rgba(26, 22, 18, 0.16);
  --font:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo",
    "Malgun Gothic", sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --page: #15120e;
  --surface: #211c16;
  --surface-soft: #2b251e;
  --text: #f1ece2;
  --secondary: #b3aa98;
  --tertiary: #8a8170;
  --line: rgba(241, 236, 226, 0.14);
  --line-soft: rgba(241, 236, 226, 0.1);
  --accent: #c9a24a;
  --accent-strong: #e3c887;
  --accent-soft: rgba(201, 162, 74, 0.14);
  --accent-glow: rgba(201, 162, 74, 0.28);
  --glass: rgba(21, 18, 14, 0.82);
  --window: #211c16;
  --window-bar: #2b251e;
  --sidebar: #29231c;
  --paper: #191510;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

::selection {
  background: var(--accent-soft);
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

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

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 50;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--glass);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(180%) blur(18px);
  transition:
    border-color 0.2s ease,
    background-color 0.3s ease;
}

.topbar.scrolled {
  border-bottom-color: var(--line-soft);
}

@supports (-moz-appearance: none) {
  .topbar {
    backdrop-filter: none;
    background: color-mix(in srgb, var(--page) 96%, transparent);
  }
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.brand {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-accent,
.preview-brand b,
.file-mark b {
  color: var(--accent);
}

.topbar-right,
.lang {
  display: inline-flex;
  align-items: center;
}

.topbar-right {
  gap: 16px;
}

.lang {
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang a {
  text-decoration: none;
}

.lang a:hover,
.lang .on {
  color: var(--text);
}

.lang .sep {
  margin-inline: 8px;
  color: var(--line);
}

.theme-toggle {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background-color 0.2s ease;
}

.theme-toggle:hover {
  transform: scale(1.06);
}

.theme-toggle:active {
  transform: scale(0.94);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
}

.theme-toggle .ico-moon,
[data-theme="dark"] .theme-toggle .ico-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .ico-moon {
  display: block;
}

.hero {
  padding-top: clamp(86px, 11vw, 140px);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
}

.badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
  content: "";
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.hero h1 strong {
  color: var(--accent);
  font-weight: inherit;
}

.hero-copy {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--secondary);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: -0.025em;
  line-height: 1.62;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  padding: 11px 20px;
  background: var(--surface-soft);
  color: var(--secondary);
  cursor: default;
}

.btn.primary[href] {
  background: var(--accent);
  color: #fffaf0;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.btn.primary[href]:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn.text-link {
  gap: 7px;
  padding-inline: 4px;
  color: var(--accent-strong);
}

.btn.text-link::after {
  content: "›";
  font-size: 1.35em;
  line-height: 1;
}

.btn.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-stage {
  position: relative;
  margin-top: clamp(64px, 9vw, 106px);
  padding: clamp(28px, 5vw, 62px);
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 15%, var(--accent-glow), transparent 54%),
    var(--surface-soft);
}

.product-stage::after {
  position: absolute;
  inset: 50% 16% -36%;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(80px);
  content: "";
  pointer-events: none;
}

.app-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--window);
  box-shadow: var(--shadow);
  text-align: left;
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 44px;
  align-items: center;
  padding-inline: 16px;
  background: var(--window-bar);
  border-bottom: 1px solid var(--line-soft);
  color: var(--tertiary);
  font-size: 0.68rem;
  font-weight: 600;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tertiary);
  opacity: 0.38;
}

.window-state {
  justify-self: end;
}

.workspace-preview {
  display: grid;
  min-height: 470px;
  grid-template-columns: 205px minmax(340px, 1fr) 235px;
}

.preview-sidebar,
.preview-ai {
  padding: 28px 22px;
  font-size: 0.76rem;
}

.preview-sidebar {
  background: var(--sidebar);
  border-right: 1px solid var(--line-soft);
}

.preview-brand {
  margin-bottom: 46px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.preview-sidebar small {
  display: block;
  margin-bottom: 5px;
  color: var(--tertiary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-sidebar strong {
  display: block;
  overflow: hidden;
  margin-bottom: 22px;
  color: var(--text);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-sidebar ul,
.file-object ul,
.hero-notes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-sidebar li {
  margin: 4px 0;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--secondary);
}

.preview-sidebar li.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.preview-paper {
  padding: 62px clamp(38px, 5vw, 74px);
  background: var(--paper);
}

.paper-meta,
.mode-pane > span {
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preview-paper h2 {
  margin: 13px 0 34px;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.preview-paper p {
  margin: 0 0 18px;
  color: var(--secondary);
  font-size: clamp(0.78rem, 1.2vw, 0.94rem);
  line-height: 1.9;
}

.preview-ai {
  background: var(--window);
  border-left: 1px solid var(--line-soft);
  color: var(--secondary);
}

.ai-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: var(--text);
  font-weight: 700;
}

.ai-title span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.preview-ai p {
  margin: 0 0 20px;
  padding: 14px;
  border-radius: 12px 12px 12px 3px;
  background: var(--surface);
  color: var(--text);
  line-height: 1.65;
}

.ai-action {
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.7rem;
}

.hero-notes {
  display: flex;
  justify-content: center;
  gap: 0;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-notes li {
  margin-top: 24px;
  padding-inline: 18px;
  border-right: 1px solid var(--line);
}

.hero-notes li:last-child {
  border-right: 0;
}

.chapter {
  padding-block: clamp(120px, 15vw, 190px);
}

.chapter:nth-of-type(odd) {
  background: var(--surface);
}

.split-layout,
.ai-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 9vw, 120px);
}

.chapter-copy {
  max-width: 470px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter-copy h2,
.section-heading h2,
.privacy-chapter h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.7rem, 5.7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.chapter-copy > p:last-child,
.section-heading > p:last-child {
  margin: 28px 0 0;
  color: var(--secondary);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  letter-spacing: -0.02em;
  line-height: 1.7;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.chapter-copy code,
.faq code {
  color: var(--accent-strong);
  font-size: 0.9em;
}

.file-stage {
  display: grid;
  min-height: 570px;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 38%, var(--accent-glow), transparent 38%),
    var(--page);
}

.file-object {
  position: relative;
  width: min(300px, 66%);
  min-height: 400px;
  padding: 44px 36px 30px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 12px 42px 12px 12px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(26, 22, 18, 0.19);
  transform: rotate(-2deg);
}

[data-theme="dark"] .file-object {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.file-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 62px;
  background: linear-gradient(225deg, var(--page) 50%, var(--surface-soft) 50%);
}

.file-mark {
  margin-bottom: 54px;
  font-size: 1.5rem;
  font-weight: 750;
  letter-spacing: -0.05em;
}

.file-object > strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.file-object > small {
  display: block;
  margin: 7px 0 26px;
  color: var(--tertiary);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.file-object li {
  display: flex;
  justify-content: space-between;
  padding-block: 10px;
  border-top: 1px solid var(--line-soft);
  color: var(--secondary);
  font-size: 0.76rem;
}

.file-object li b {
  color: var(--text);
}

.lock-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 700;
}

.lock-mark::before {
  content: "●";
  font-size: 0.55rem;
}

.editing-chapter {
  background: var(--page) !important;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 64px;
}

.mode-stage {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(26, 22, 18, 0.08);
  grid-template-columns: 1fr 1fr;
}

.mode-pane {
  position: relative;
  min-height: 420px;
  padding: clamp(36px, 5vw, 66px);
}

.rich-mode {
  border-right: 1px solid var(--line-soft);
}

.mode-pane h3 {
  max-width: 420px;
  margin: 34px 0 22px;
  color: var(--text);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  letter-spacing: -0.05em;
  line-height: 1.14;
}

.mode-pane p {
  max-width: 410px;
  margin: 0;
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.95;
}

.format-bar {
  position: absolute;
  right: clamp(36px, 5vw, 66px);
  bottom: 38px;
  left: clamp(36px, 5vw, 66px);
  display: flex;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--tertiary);
  font-size: 0.85rem;
}

.markdown-mode {
  background: color-mix(in srgb, var(--surface-soft) 62%, var(--surface));
}

.markdown-mode pre {
  margin: 34px 0 0;
  color: var(--text);
  font-size: clamp(0.78rem, 1.35vw, 0.98rem);
  line-height: 1.85;
  white-space: pre-wrap;
}

.ai-chapter {
  padding-block: clamp(120px, 15vw, 190px);
  background: #15120e;
  color: #f1ece2;
}

.ai-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
}

.chapter-copy.inverse h2,
.chapter-copy.inverse > p:last-child {
  color: #f1ece2;
}

.chapter-copy.inverse > p:last-child {
  opacity: 0.68;
}

.conversation {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(241, 236, 226, 0.14);
  border-radius: 26px;
  background: #211c16;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.conversation-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(241, 236, 226, 0.1);
  font-size: 0.82rem;
}

.conversation-head small {
  color: rgba(241, 236, 226, 0.48);
}

.ai-orb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9a24a;
  box-shadow: 0 0 22px rgba(201, 162, 74, 0.8);
}

.message {
  max-width: 88%;
  margin-top: 24px;
  padding: 15px 17px;
  border-radius: 17px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.user-message {
  margin-left: auto;
  border-bottom-right-radius: 5px;
  background: #9a7a36;
  color: #fffaf0;
}

.ai-message {
  border-bottom-left-radius: 5px;
  background: #2b251e;
  color: rgba(241, 236, 226, 0.82);
}

.tool-row {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid rgba(241, 236, 226, 0.1);
  color: rgba(241, 236, 226, 0.45);
  font-size: 0.7rem;
}

.privacy-chapter {
  padding-block: clamp(130px, 17vw, 220px);
  background: var(--surface);
  text-align: center;
}

.privacy-chapter h2 {
  max-width: 930px;
  margin-inline: auto;
}

.privacy-lead {
  max-width: 740px;
  margin: 30px auto 0;
  color: var(--secondary);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  letter-spacing: -0.02em;
  line-height: 1.75;
}

.privacy-facts {
  display: grid;
  max-width: 920px;
  margin: 78px auto 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}

.privacy-facts div {
  display: grid;
  gap: 6px;
  padding: 24px 28px 0;
  border-right: 1px solid var(--line);
}

.privacy-facts div:first-child {
  padding-left: 0;
}

.privacy-facts div:last-child {
  padding-right: 0;
  border-right: 0;
}

.privacy-facts strong {
  color: var(--text);
  font-size: 0.92rem;
}

.privacy-facts span {
  color: var(--secondary);
  font-size: 0.78rem;
}

.privacy-link {
  display: inline-block;
  margin-top: 50px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 650;
  text-underline-offset: 4px;
}

.faq {
  padding-block: clamp(110px, 14vw, 170px);
}

.section-heading.compact {
  margin-bottom: 54px;
}

.section-heading.compact h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  color: var(--tertiary);
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  margin: -4px 0 28px;
  color: var(--secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}

footer {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding-block: 28px 54px;
  color: var(--secondary);
  font-size: 0.76rem;
}

.footer-inner a {
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 920px) {
  .workspace-preview {
    grid-template-columns: 180px minmax(300px, 1fr);
  }

  .preview-ai {
    display: none;
  }

  .split-layout,
  .ai-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .chapter-copy {
    max-width: 720px;
  }

  .file-stage {
    min-height: 520px;
  }

  .mode-stage {
    grid-template-columns: 1fr;
  }

  .rich-mode {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .mode-pane {
    min-height: 380px;
  }

  .conversation {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .topbar-right {
    gap: 10px;
  }

  .lang {
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
    letter-spacing: -0.075em;
  }

  .hero-copy br {
    display: none;
  }

  .product-stage {
    margin-inline: -8px;
    padding: 16px;
    border-radius: 24px;
  }

  .app-window {
    border-radius: 13px;
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-bar > span:nth-child(2) {
    display: none;
  }

  .workspace-preview {
    min-height: 390px;
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-paper {
    padding: 48px 30px;
  }

  .preview-paper p {
    font-size: 0.78rem;
  }

  .hero-notes {
    flex-wrap: wrap;
  }

  .hero-notes li {
    padding-inline: 10px;
  }

  .chapter,
  .ai-chapter {
    padding-block: 110px;
  }

  .file-stage {
    min-height: 450px;
    border-radius: 24px;
  }

  .file-object {
    width: min(280px, 76%);
    min-height: 380px;
    padding-inline: 30px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .mode-stage,
  .conversation {
    border-radius: 20px;
  }

  .mode-pane {
    min-height: 350px;
    padding: 34px 28px;
  }

  .format-bar {
    right: 28px;
    left: 28px;
  }

  .markdown-mode pre {
    font-size: 0.75rem;
  }

  .conversation {
    padding: 24px 18px;
  }

  .message {
    max-width: 94%;
    font-size: 0.8rem;
  }

  .privacy-facts {
    margin-top: 54px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr;
  }

  .privacy-facts div,
  .privacy-facts div:first-child,
  .privacy-facts div:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .privacy-facts div:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
