:root {
  --paper: #fffdfb;
  --surface: #ffffff;
  --surface-muted: #f7f2ec;
  --line: #ded6cd;
  --line-strong: #b9aea3;
  --ink: #27231f;
  --ink-soft: #685f56;
  --accent: #b24d2d;
  --accent-dark: #943d25;
  --accent-pale: #fae5dc;
  --success: #2f7357;
  --warning: #9a5a11;
  --danger: #a03f3a;
  --focus: #186e9e;
  --shadow: 0 18px 45px rgba(72, 48, 31, 0.08);
  --radius: 18px;
  --radius-small: 11px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
input[type="file"],
select {
  cursor: pointer;
}

a {
  color: var(--accent-dark);
  text-underline-offset: 0.2em;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-200%);
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 70%, white);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), 1120px);
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 760px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(222, 214, 205, 0.8);
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--accent);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.site-nav {
  position: absolute;
  top: 66px;
  right: 1rem;
  left: 1rem;
  display: none;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] {
  display: grid;
}

.site-nav a {
  padding: 0.72rem 0.8rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
  background: var(--accent-pale);
}

main {
  min-height: 60vh;
}

.hero {
  padding: clamp(2.4rem, 7vw, 5.5rem) 0 2.4rem;
}

.hero-compact {
  padding-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 4rem);
}

h2 {
  font-size: clamp(1.35rem, 4vw, 2rem);
}

h3 {
  font-size: 1.08rem;
}

.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
}

.section {
  padding: 1.2rem 0 4rem;
}

.section-heading {
  margin-bottom: 1.3rem;
}

.card {
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(72, 48, 31, 0.045);
}

.card:not(.tool-card) + .card:not(.tool-card) {
  margin-top: 1rem;
}

.card-grid,
.tool-grid,
.summary-grid {
  display: grid;
  gap: 1rem;
}

.tool-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tool-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.tool-card p {
  color: var(--ink-soft);
}

.tool-card .card-link {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 800;
}

.tool-card-featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: linear-gradient(145deg, #fff, #fdf2ec);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 0.9rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--accent-pale);
  font-size: 0.76rem;
  font-weight: 800;
}

.badge-muted {
  color: var(--ink-soft);
  background: var(--surface-muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field > label,
.field-label {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 750;
}

.field-hint,
.muted,
.helper {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

input[type="text"],
input[type="number"],
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.78rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: #fff;
  font-variant-numeric: tabular-nums;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--focus);
}

.input-with-unit {
  position: relative;
}

.input-with-unit input {
  padding-right: 3.3rem;
}

.input-with-unit span {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  color: var(--ink-soft);
  transform: translateY(-50%);
  pointer-events: none;
}

.button-row,
.toolbar,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 1rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-small);
  color: #fff;
  background: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 140ms ease, transform 140ms ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #fff;
}

.button-secondary:hover {
  color: var(--accent-dark);
  background: var(--surface-muted);
}

.button-quiet {
  border-color: transparent;
  color: var(--accent-dark);
  background: transparent;
}

.button-quiet:hover {
  background: var(--accent-pale);
}

.button-danger {
  border-color: color-mix(in srgb, var(--danger) 40%, var(--line));
  color: var(--danger);
  background: #fff;
}

.button-small {
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
}

.notice {
  padding: 0.9rem 1rem;
  border: 1px solid #dfcbb9;
  border-radius: var(--radius-small);
  color: #624b37;
  background: #fff8ef;
  font-size: 0.9rem;
}

.notice strong {
  color: var(--ink);
}

.notice-privacy {
  border-color: #c8dfd4;
  color: #285743;
  background: #f0faf5;
}

.notice-error {
  border-color: #e5bebb;
  color: #7a2d29;
  background: #fff3f2;
}

.status-line {
  min-height: 1.6em;
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.result-card {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  background: linear-gradient(145deg, #fff, #fff8f4);
}

.result-number,
.metric-value {
  margin: 0;
  font-size: clamp(2rem, 9vw, 3.6rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

.metric-label {
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.result-subvalue {
  color: var(--ink-soft);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

th,
td {
  padding: 0.72rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--ink-soft);
  background: var(--surface-muted);
  font-size: 0.8rem;
}

tbody tr:last-child td,
tfoot tr:last-child td,
tfoot tr:last-child th {
  border-bottom: 0;
}

.number-cell {
  text-align: right;
}

.progress-steps {
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: step;
}

.progress-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  color: var(--ink-soft);
  font-size: clamp(0.68rem, 2.5vw, 0.83rem);
  text-align: center;
}

.progress-steps li::before {
  z-index: 2;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  counter-increment: step;
  content: counter(step);
  font-weight: 800;
}

.progress-steps li::after {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  content: "";
}

.progress-steps li:last-child::after {
  display: none;
}

.progress-steps li[data-state="active"] {
  color: var(--accent-dark);
  font-weight: 800;
}

.progress-steps li[data-state="active"]::before {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.progress-steps li[data-state="done"]::before {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-pale);
  content: "✓";
}

.progress-steps li[data-state="done"]::after {
  background: var(--accent);
}

.drop-zone {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-muted);
  text-align: center;
  transition: border-color 150ms ease, background 150ms ease;
}

.drop-zone[data-dragover="true"] {
  border-color: var(--accent);
  background: var(--accent-pale);
}

.drop-zone-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.7rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--accent-dark);
  background: var(--accent-pale);
  font-size: 1.5rem;
}

.drop-zone p {
  margin-bottom: 0.55rem;
}

.canvas-layout {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.canvas-column {
  min-width: 0;
}

.canvas-shell {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background-color: #d8d1c9;
  background-image: linear-gradient(45deg, rgba(255,255,255,.2) 25%, transparent 25%), linear-gradient(-45deg, rgba(255,255,255,.2) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255,255,255,.2) 75%), linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.2) 75%);
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
}

#floorplanCanvas {
  width: 100%;
  height: clamp(300px, 70vw, 460px);
  max-width: none;
  cursor: crosshair;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

#floorplanCanvas[data-cursor="grab"] {
  cursor: grab;
}

#floorplanCanvas[data-cursor="grabbing"] {
  cursor: grabbing;
}

#floorplanCanvas[data-cursor="move"] {
  cursor: move;
}

.canvas-help {
  position: absolute;
  z-index: 5;
  right: 0.75rem;
  top: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  color: #fff;
  background: rgba(39, 35, 31, 0.84);
  font-size: 0.74rem;
  pointer-events: none;
}

.mobile-canvas-actions {
  position: absolute;
  z-index: 7;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  background: rgba(39, 35, 31, 0.88);
  box-shadow: 0 8px 24px rgba(31, 27, 24, 0.18);
  backdrop-filter: blur(8px);
  display: none;
}

.mobile-canvas-actions .button {
  flex: 1 1 auto;
}

.coachmark {
  position: absolute;
  z-index: 8;
  top: 0.7rem;
  left: 0.7rem;
  max-width: min(340px, calc(100% - 1.4rem));
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  /* The card floats over the canvas near where outline points get tapped
     (top-left). Only its text/buttons should intercept clicks — everything
     else (card background/padding) must let taps through to the canvas
     underneath so the coachmark never blocks drawing. */
  pointer-events: none;
}

.coachmark-step {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
  pointer-events: auto;
}

.coachmark-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  pointer-events: auto;
}

.coachmark-progress {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
}

.coachmark-reopen {
  /* Anchored top-right, below .canvas-help's label (which is
     pointer-events:none and safe to sit near) — deliberately NOT top-left,
     since that's where outline/room tracing most often starts and a real
     button there (unlike the pointer-events:none coachmark card) would
     block taps. */
  position: absolute;
  z-index: 7;
  top: 2.6rem;
  right: 0.75rem;
}

.gesture-guide {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(31, 27, 24, 0.68);
}

.gesture-guide-card {
  width: min(100%, 390px);
  padding: 1.2rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gesture-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.crop-caption {
  position: absolute;
  z-index: 5;
  top: 0.7rem;
  left: 50%;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(39, 35, 31, 0.85);
  font-size: 0.78rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.side-panel {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.panel-section {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  scroll-margin-top: 82px;
}

.panel-section h3 {
  margin-bottom: 0.75rem;
}

.segmented,
.radio-cards {
  display: grid;
  gap: 0.65rem;
}

.radio-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fff;
}

.radio-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-pale);
}

.radio-card input {
  margin-top: 0.28rem;
}

.radio-card strong,
.radio-card span {
  display: block;
}

.radio-card span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.room-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.room-row[data-selected="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-pale);
}

.room-swatch {
  width: 12px;
  height: 28px;
  border-radius: 999px;
}

.room-name-input {
  min-height: 38px !important;
  padding: 0.42rem 0.5rem !important;
}

.room-row > select {
  grid-column: 2 / -1;
  min-width: 0;
}

.room-meta {
  grid-column: 2 / -1;
  margin-top: -0.2rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
}

.draft-indicator {
  padding: 0.7rem;
  border-radius: 9px;
  color: var(--accent-dark);
  background: var(--accent-pale);
  font-size: 0.85rem;
  font-weight: 700;
}

.content-placeholder,
.faq-placeholder {
  margin-top: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--surface-muted);
}

.placeholder-block {
  min-height: 100px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.65);
  text-align: center;
}

.content-copy {
  margin-top: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--ink);
  line-height: 1.7;
}

.content-copy h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.02rem;
  color: var(--accent-dark);
}

.content-copy h3:first-child {
  margin-top: 0;
}

.content-copy p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
}

.content-copy p:last-child {
  margin-bottom: 0;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  padding: 0.9rem 0;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--accent-dark);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--surface-muted);
  font-size: 0.84rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--ink-soft);
}

.ad-slot {
  min-height: 1px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.checkbox-row input {
  margin-top: 0.3rem;
}

.repeat-list {
  display: grid;
  gap: 0.75rem;
}

.repeat-row {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.empty-state {
  padding: 1rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-small);
  color: var(--ink-soft);
  text-align: center;
}

.form-section {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 979px) {
  .mobile-canvas-actions:not([hidden]) {
    position: static;
    display: flex;
    margin: 0.55rem;
  }

  #workspace[data-step="trace"] .side-panel,
  #workspace[data-step="result"] .side-panel {
    display: contents;
  }

  #workspace[data-step="trace"] #tracePanel {
    order: -1;
  }

  #workspace[data-step="trace"] #roomPanel,
  #workspace[data-step="result"] #resultsPanel {
    order: 1;
  }
}

@media (min-width: 640px) {
  .form-grid-2,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .repeat-row {
    grid-template-columns: minmax(120px, 1.3fr) repeat(2, minmax(100px, 1fr)) auto;
    align-items: end;
  }
}

@media (min-width: 820px) {
  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav[data-open="true"] {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tool-card-featured {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .canvas-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .side-panel {
    position: sticky;
    top: 82px;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    padding-right: 0.2rem;
  }

  #floorplanCanvas {
    height: min(72vh, 760px);
  }
}

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

@media print {
  .site-header,
  .button-row,
  .toolbar,
  .ad-slot,
  .content-placeholder,
  .faq-placeholder {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .card {
    box-shadow: none;
  }
}
