/* =========================================================================
   Костя & Гера — свадебное приглашение
   «Светлый шампань-люкс»: тёплый айвори-холст, золото-шампань как акцент,
   высококонтрастная антиква, тихая типографика, музейный воздух.
   Mobile-first · работает без JS · prefers-reduced-motion.
   ========================================================================= */

:root {
  /* --- Холст и поверхности --- */
  --canvas:      #FBF8F1;   /* фон страницы (тёплый айвори) */
  --canvas-deep: #F3EAD8;   /* нижняя точка фонового градиента */
  --paper:       #FFFDF9;   /* карточки и поверхности */
  --paper-warm:  #FBF6EC;   /* мягкая вложенная поверхность */

  /* --- Текст --- */
  --ink:        #2C2722;    /* основной (тёплый эспрессо) */
  --ink-muted:  #8C8175;    /* вторичный, подписи */

  /* --- Золото --- */
  --gold:        #C2A15B;   /* акцент: линии, иконки, цифры */
  --gold-deep:   #A9863F;   /* тёмная грань фольги, текст на светлом */
  --gold-light:  #E6CF95;   /* светлая грань фольги */
  --gold-foil:   linear-gradient(135deg, #E6CF95 0%, #CDA862 46%, #BF9A4E 78%, #DCC081 100%);

  /* --- Вторичные --- */
  --blush:    #E7D2C6;      /* тёплый розовый акцент (дозированно) */
  --hairline: #E9DFCB;      /* тонкие границы (тёплые) */

  /* --- Статусы (мягкие, в палитре) --- */
  --ok:     #5E7B5B;  --ok-bg: #EAF0E6;  --ok-line: #D4E0CC;  /* шалфей */
  --no:     #B06A4F;  --no-bg: #F4E7DF;  --no-line: #E8D2C5;  /* терракота */
  --wait:   #9A8C73;  --wait-bg: #F1E9D9; --wait-line: #E4D8BF;

  /* --- Форма --- */
  --r-card: 20px;
  --r-ctrl: 13px;
  --r-pill: 999px;
  --shadow-card: 0 18px 50px rgba(70, 52, 28, .10), 0 2px 8px rgba(70, 52, 28, .05);
  --shadow-soft: 0 8px 24px rgba(70, 52, 28, .07);
  --shadow-btn:  0 8px 20px rgba(170, 134, 63, .28);

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --script: "Marck Script", "Cormorant Garamond", cursive;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22, .68, .2, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(120% 90% at 50% -10%, #FFFCF5 0%, var(--canvas) 42%, var(--canvas-deep) 100%);
  background-attachment: fixed;
}

/* Едва заметная бумажная зернистость поверх фона */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 18px calc(36px + env(safe-area-inset-bottom));
}

/* =========================================================================
   КАРТОЧКА (экраны гостя) + рамка-паспарту
   ========================================================================= */
.card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 44px 30px 40px;
  overflow: hidden;
}
/* Тонкая золотая внутренняя рамка, как у печатного приглашения */
.card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  border-radius: calc(var(--r-card) - 9px);
  pointer-events: none;
}
.card.narrow { max-width: 380px; }
.center { text-align: center; }

/* =========================================================================
   ВЕНЗЕЛЬ / МОНОГРАММА  «К ✦ Г»
   ========================================================================= */
.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .34em;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  letter-spacing: .02em;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .5));
}
.monogram .star {
  font-size: .62em;
  transform: translateY(-.04em);
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
}

/* Круглая «печать» с монограммой (для подтверждения / акцента) */
.seal {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 32% 28%, #FFFBF1 0%, var(--paper-warm) 70%);
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  box-shadow: 0 6px 18px rgba(170, 134, 63, .18), inset 0 0 0 4px var(--paper);
}
.seal .monogram { font-size: 24px; }

/* =========================================================================
   ТИПОГРАФИКА ЗАГОЛОВКОВ
   ========================================================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--ink-muted);
}
.names {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 13vw, 66px);
  line-height: 1.02;
  letter-spacing: .005em;
  color: var(--ink);
  margin: 0;
}
.names .amp {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gold-deep);
  font-size: .72em;
  padding: 0 .06em;
  vertical-align: baseline;
}
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 8vw, 40px);
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
.invite-title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 5.5vw, 26px);
  color: var(--ink-muted);
  margin: 0;
}
.date {
  font-family: var(--sans);
  font-size: clamp(19px, 5vw, 25px);
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: .22em;
  margin: 0;
}
.muted { color: var(--ink-muted); }
.small { font-size: 13.5px; }

/* Стэк вертикального ритма внутри карточки гостя */
.stack { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.stack .tight { margin-top: -8px; }

/* =========================================================================
   ЗОЛОТОЙ РАЗДЕЛИТЕЛЬ С ✦
   ========================================================================= */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 280px;
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--gold) 70%, transparent));
}
.divider::after { transform: scaleX(-1); }
.divider .mark { font-size: 13px; line-height: 1; }

/* =========================================================================
   БАННЕРЫ
   ========================================================================= */
.banner {
  width: 100%;
  border-radius: var(--r-ctrl);
  padding: 13px 16px;
  font-size: 14.5px;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
}
.banner.ok  { background: var(--ok-bg); color: var(--ok); border-color: var(--ok-line); }
.banner.err { background: var(--no-bg); color: var(--no); border-color: var(--no-line); }

/* Заметка о текущем ответе (повторный заход) */
.current {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--r-ctrl);
  font-size: 15px;
  text-align: center;
}
.current b { font-weight: 600; color: var(--ink); }

/* =========================================================================
   ПОДТВЕРЖДЕНИЕ (состояние C)
   ========================================================================= */
.confirm-seal {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-foil);
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255, 255, 255, .5);
  transform: scale(1);
  transition: transform .55s var(--ease);
}
html.js .confirm-seal { transform: scale(.55); }
html.js .confirm-seal.play { transform: scale(1); }
.confirm-seal svg { width: 34px; height: 34px; }
.confirm-seal svg path {
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .5s var(--ease) .22s;
}
html.js .confirm-seal svg path { stroke-dashoffset: 0; }
html.js .confirm-seal.play svg path { stroke-dashoffset: 0; }
/* крошечная золотая искра */
.confirm-seal .spark {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 12px;
  height: 12px;
  color: var(--gold-light);
  opacity: 0;
  animation: spark .7s var(--ease) .5s both;
}

/* =========================================================================
   RSVP — ФОРМА ВЫБОРА
   ========================================================================= */
.rsvp { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.choices { display: flex; gap: 12px; }
.choice {
  flex: 1;
  min-height: 56px;
  padding: 15px 14px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid color-mix(in srgb, var(--gold) 50%, var(--hairline));
  border-radius: var(--r-ctrl);
  cursor: pointer;
  transition: transform .12s var(--ease), border-color .18s ease, background .18s ease, box-shadow .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.choice:hover { border-color: var(--gold); box-shadow: var(--shadow-soft); }
.choice:active { transform: scale(.985); }
.choice .tick { display: none; }

.choice.accept.selected {
  border-color: var(--ok);
  background: var(--ok-bg);
  color: var(--ok);
}
.choice.decline.selected {
  border-color: var(--no);
  background: var(--no-bg);
  color: var(--no);
}
.choice.selected { box-shadow: none; }
.choice.selected .tick {
  display: inline-block;
  margin-right: .35em;
  font-weight: 700;
}

/* Блок имени — плавное раскрытие */
.name-block {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .45s var(--ease), opacity .4s ease, margin .35s var(--ease);
  margin-top: -14px;
}
.name-block > div { overflow: hidden; display: flex; flex-direction: column; gap: 14px; }
.name-block.show {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0;
}
.name-block-ns { margin-top: 12px; display: flex; flex-direction: column; gap: 14px; }

/* =========================================================================
   ПОЛЯ ВВОДА
   ========================================================================= */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 15px 16px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-ctrl);
  transition: border-color .18s ease, box-shadow .18s ease;
}
input::placeholder { color: color-mix(in srgb, var(--ink-muted) 80%, transparent); }
input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 22%, transparent);
}

/* =========================================================================
   КНОПКИ
   ========================================================================= */
/* Основная — золотая фольга + проблеск */
.submit-btn {
  position: relative;
  width: 100%;
  min-height: 54px;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #3A2E13;
  background: var(--gold-foil);
  border: none;
  border-radius: var(--r-ctrl);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-btn);
  transition: transform .14s var(--ease), box-shadow .2s ease, filter .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
}
.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(170, 134, 63, .34);
}
.submit-btn:hover::after { left: 120%; }
.submit-btn:active { transform: translateY(0); filter: brightness(.97); }

/* Текстовая ссылка-кнопка */
.link-btn {
  background: none;
  border: none;
  padding: 6px 2px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 50%, transparent);
  border-radius: 0;
  transition: color .15s ease, border-color .15s ease;
}
.link-btn:hover { color: var(--ink); border-color: var(--gold); }

.login { width: 100%; display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }

/* Раскрытие «Изменить ответ» без JS */
.edit-answer { width: 100%; }
.edit-answer > summary {
  list-style: none;
  cursor: pointer;
  text-align: center;
  color: var(--gold-deep);
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  width: max-content;
  margin: 0 auto;
  user-select: none;
}
.edit-answer > summary::-webkit-details-marker { display: none; }
.edit-answer[open] > summary { margin-bottom: 18px; }

/* =========================================================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ (стэггер)
   ========================================================================= */
@keyframes spark {
  0%   { opacity: 0; transform: scale(.3) rotate(0deg); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.3) rotate(45deg); }
}
/* Появление: подъём при полной непрозрачности (контент всегда читаем) */
html.js .stagger > * {
  transform: translateY(12px);
  transition: transform .6s var(--ease);
}
html.js .stagger.in > * { transform: none; }
html.js .stagger.in > *:nth-child(1) { transition-delay: .05s; }
html.js .stagger.in > *:nth-child(2) { transition-delay: .14s; }
html.js .stagger.in > *:nth-child(3) { transition-delay: .23s; }
html.js .stagger.in > *:nth-child(4) { transition-delay: .32s; }
html.js .stagger.in > *:nth-child(5) { transition-delay: .41s; }
html.js .stagger.in > *:nth-child(6) { transition-delay: .50s; }
html.js .stagger.in > *:nth-child(7) { transition-delay: .59s; }
html.js .stagger.in > *:nth-child(8) { transition-delay: .68s; }

/* =========================================================================
   АДМИН-ПАНЕЛЬ
   ========================================================================= */
.admin {
  position: relative;
  width: 100%;
  max-width: 940px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 30px 30px 34px;
}
.admin-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.admin-head .title-wrap { display: flex; flex-direction: column; gap: 4px; }
.admin-head h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
}
.admin-head .monogram { font-size: 18px; }

/* Счётчики */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.counter {
  background: var(--paper-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--r-ctrl);
  padding: 18px 14px;
  text-align: center;
}
.counter .num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--gold-deep);
}
.counter .lbl {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-muted);
  margin-top: 8px;
}
.counter.ok .num { color: var(--ok); }
.counter.no .num { color: var(--no); }
.counter.wait .num { color: var(--wait); }

.gen { margin: 0 0 18px; }
.gen .submit-btn { width: auto; min-height: 0; padding: 13px 24px; }

/* Новая ссылка */
.newlink {
  background: var(--ok-bg);
  border: 1px solid var(--ok-line);
  border-radius: var(--r-ctrl);
  padding: 14px 16px;
  margin-bottom: 22px;
}
.newlink .muted { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.newlink-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.newlink code { word-break: break-all; }

/* Заголовки секций */
.admin h2 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-muted);
  margin: 30px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}

/* Таблицы */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
th, td {
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
}
thead th {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 35%, var(--hairline));
}
tbody tr:last-child td { border-bottom: none; }
.linkcell { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: #6A5E4A;
}
.linkcell code { word-break: break-all; }

/* Вторичная кнопка (обводка золотом) — «Копировать», «Тест», «Сводка» */
.copy {
  border: 1px solid color-mix(in srgb, var(--gold) 60%, transparent);
  background: var(--paper);
  color: var(--gold-deep);
  border-radius: 9px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.copy:hover { border-color: var(--gold); background: var(--paper-warm); }
.copy:active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Бейджи статусов */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid transparent;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .8; }
.badge.ok   { background: var(--ok-bg);   color: var(--ok);   border-color: var(--ok-line); }
.badge.no   { background: var(--no-bg);   color: var(--no);   border-color: var(--no-line); }
.badge.wait { background: var(--wait-bg); color: var(--wait); border-color: var(--wait-line); }

/* Сворачиваемый блок настроек */
.settings {
  border: 1px solid var(--hairline);
  border-radius: var(--r-ctrl);
  background: var(--paper-warm);
  margin: 4px 0 8px;
  padding: 0 18px;
}
.settings > summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 0;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.settings > summary::-webkit-details-marker { display: none; }
.settings > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  color: var(--gold-deep);
  font-size: 15px;
  line-height: 1;
}
.settings[open] > summary::before { content: "\2013"; }
.settings-body { padding: 4px 0 18px; display: flex; flex-direction: column; gap: 12px; }
.settings-body label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; color: var(--ink-muted); }
.settings-body .submit-btn { width: auto; min-height: 0; padding: 12px 22px; align-self: flex-start; }
.settings-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.settings-actions .copy { padding: 11px 16px; }

/* Действия в строке */
.rowact { text-align: right; white-space: nowrap; }
.del-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--no);
  border-radius: 9px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.del-btn:hover { border-color: var(--no-line); background: var(--no-bg); }

/* Опасная зона */
.danger-zone {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed color-mix(in srgb, var(--no) 35%, var(--hairline));
}
.danger-btn {
  border: 1px solid var(--no-line);
  background: var(--paper);
  color: var(--no);
  border-radius: var(--r-ctrl);
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease;
}
.danger-btn:hover { background: var(--no-bg); }

/* =========================================================================
   АДАПТИВ
   ========================================================================= */
@media (max-width: 560px) {
  .counters { grid-template-columns: repeat(2, 1fr); }
  .admin { padding: 22px 18px 26px; }
  .admin-head h1 { font-size: 23px; }
  .counter .num { font-size: 34px; }
}
@media (max-width: 400px) {
  .card { padding: 38px 22px 34px; }
  .choices { gap: 10px; }
}

/* =========================================================================
   ДОСТУПНОСТЬ
   ========================================================================= */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
  }
  .submit-btn::after { display: none; }
  .name-block { transition: none; }
  html.js .stagger > *,
  html.js .stagger.in > * { transform: none !important; }
  html.js .confirm-seal,
  html.js .confirm-seal.play { transform: scale(1) !important; }
  html.js .confirm-seal svg path { stroke-dashoffset: 0 !important; }
}
