@font-face {
  font-family: "DM Sans";
  src: url("../assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --canvas: #d4e2e9;
  --background: #f8faf8;
  --foreground: #3e4330;
  --card: #ffffff;
  --secondary: #edf3ed;
  --secondary-strong: #dce9d9;
  --muted: #667064;
  --accent: #d9a187;
  --accent-text: #9a6754;
  --accent-soft: #fbf5f0;
  --accent-border: #ead9cf;
  --success: #58734f;
  --success-strong: #6d9265;
  --success-soft: #eff7eb;
  --border: #dce4da;
  --danger: #b64f46;
  --danger-soft: #fdf0ee;
  --ring: #9a6754;
  --shadow-card: 0 15px 33px rgba(62, 67, 48, 0.09);
  --shadow-soft: 0 7px 18px rgba(62, 67, 48, 0.07);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

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

html, body { margin: 0; min-height: 100%; }

body {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
  color: var(--foreground);
  background: radial-gradient(circle at 50% 12%, #f7fafb 0%, #e8f0f3 32%, #c1d5e0 100%);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a, select, input, textarea { -webkit-tap-highlight-color: transparent; }
input, textarea { user-select: text; }
a { color: inherit; }

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

[hidden] { display: none !important; }

.visually-hidden {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.app-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: min(390px, 100%);
  height: min(844px, calc(100dvh - 32px));
  overflow: hidden;
  border: 7px solid #2d3328;
  border-radius: 38px;
  background: var(--background);
  box-shadow: 0 24px 55px rgba(59, 76, 82, 0.24);
}

.app-header {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  min-height: 102px;
  padding: max(28px, env(safe-area-inset-top)) 22px 14px;
  background: #e7f0eb;
}

.app-header::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 -42px;
  height: 58px;
  border-radius: 0 0 44px 44px;
  background: #e7f0eb;
}

.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-brand { min-width: 0; }
.header-name { display: flex; align-items: center; gap: 7px; font-size: 19px; font-weight: 700; letter-spacing: -0.035em; }
.header-name img { width: 25px; height: 25px; object-fit: contain; }
.header-helper { margin: 3px 0 0; color: var(--muted); font-size: 12px; font-weight: 500; }

.avatar-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 2px;
  border: 2px solid white;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 14px rgba(62, 67, 48, 0.12);
  cursor: pointer;
}
.avatar-button img, .avatar-fallback { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.avatar-fallback { display: grid; place-items: center; color: white; background: var(--accent-text); font-weight: 700; }

.account-menu {
  position: absolute;
  z-index: 30;
  top: calc(max(28px, env(safe-area-inset-top)) + 52px);
  right: 18px;
  width: min(252px, calc(100% - 36px));
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 16px 34px rgba(62, 67, 48, 0.16);
}
.account-identity { display: flex; gap: 11px; align-items: center; padding: 2px 2px 12px; border-bottom: 1px solid var(--border); }
.account-identity img, .account-identity .avatar-fallback { width: 40px; height: 40px; flex: 0 0 40px; }
.account-copy { min-width: 0; }
.account-name, .account-email { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-name { font-size: 14px; font-weight: 700; }
.account-email { margin-top: 2px; color: var(--muted); font-size: 12px; }
.account-signout { display: flex; align-items: center; gap: 9px; width: 100%; min-height: 44px; margin-top: 7px; padding: 0 8px; border: 0; border-radius: 12px; background: transparent; color: var(--danger); text-align: left; font-weight: 700; cursor: pointer; }
.account-signout svg { width: 17px; height: 17px; flex: 0 0 auto; }
.account-signout:hover { background: var(--danger-soft); }

.app-content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.app-content:focus { outline: none; }
.content-pad { min-height: 100%; padding: 22px 20px 30px; }

.app-action-bar {
  position: relative;
  z-index: 15;
  flex: 0 0 auto;
  padding: 14px 18px max(14px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -8px 24px rgba(62, 67, 48, 0.08);
  backdrop-filter: blur(12px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.button:active { transform: scale(0.985); }
.button:disabled { opacity: 0.58; cursor: wait; transform: none; }
.button svg { width: 19px; height: 19px; flex: 0 0 auto; }
.button-primary { color: white; background: var(--foreground); box-shadow: 0 8px 16px rgba(62, 67, 48, 0.18); }
.button-primary:hover { background: #4e5740; }
.button-secondary { border-color: var(--border); background: #f9fbf8; }
.button-secondary:hover { background: var(--secondary); }
.button-accent { color: white; background: var(--accent-text); box-shadow: 0 10px 20px rgba(154, 103, 84, 0.24); }
.button-accent:hover { background: #875442; }
.button-full { width: 100%; }
.button-quiet { min-height: 40px; padding: 8px 11px; border: 0; background: transparent; color: var(--muted); font-size: 12px; }
.icon-button { display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.icon-button:hover { background: var(--secondary); }
.icon-button svg { width: 19px; height: 19px; }

.public-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: max(36px, env(safe-area-inset-top)) 27px max(26px, env(safe-area-inset-bottom));
  overflow: hidden;
  background: var(--card);
}
.public-screen::before, .public-screen::after { content: ""; position: absolute; border-radius: 50%; filter: blur(24px); pointer-events: none; }
.public-screen::before { width: 270px; height: 270px; left: -110px; top: -100px; background: #e6eff1; }
.public-screen::after { width: 220px; height: 220px; right: -100px; bottom: 70px; background: #f6e6dc; }
.public-hero, .public-actions { position: relative; z-index: 1; }
.public-hero { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.brand-icon-large { display: grid; place-items: center; width: 88px; height: 88px; margin-bottom: 25px; }
.brand-icon-large img { width: 80px; height: 80px; object-fit: contain; }
.eyebrow { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; line-height: 1.3; text-transform: uppercase; }
.brand-title { margin: 7px 0 0; font-size: 37px; line-height: 1; letter-spacing: -0.045em; }
.public-tagline { max-width: 300px; margin: 30px 0 0; font-size: 24px; font-weight: 700; line-height: 1.18; letter-spacing: -0.035em; }
.public-emotional { max-width: 300px; margin: 10px 0 0; color: var(--accent-text); font-size: 15px; font-weight: 600; line-height: 1.55; }
.public-actions { flex: 0 0 auto; }
.action-stack { display: grid; gap: 12px; }
.supporting-copy { margin: 13px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }
.public-signin { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 44px; margin-top: 4px; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: 12px; font-weight: 600; cursor: pointer; }
.public-signin svg { width: 15px; height: 15px; flex: 0 0 auto; }
.public-signin:hover { color: var(--foreground); }
.public-footer { margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--border); text-align: center; }
.public-footer nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0 8px; color: var(--muted); font-size: 11px; font-weight: 600; }
.public-footer a { display: inline-flex; min-height: 44px; align-items: center; }
.public-footer a:hover { color: var(--foreground); }
.copyright { margin: 8px 0 0; color: #778176; font-size: 10px; }

.dashboard-content { display: flex; flex-direction: column; padding-top: 57px; }
.success-banner { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; padding: 12px 14px; border: 1px solid #dbe9d5; border-radius: 16px; color: var(--success); background: var(--success-soft); font-size: 13px; font-weight: 700; }
.success-dot { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: white; background: var(--success-strong); }
.success-dot svg { width: 13px; height: 13px; }
.primary-card { padding: 24px; border: 1px solid rgba(255,255,255,0.8); border-radius: var(--radius-xl); background: var(--card); box-shadow: var(--shadow-card); }
.card-heading-row { display: flex; align-items: flex-start; gap: 15px; }
.card-symbol { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 16px; color: var(--accent-text); background: #f6e8df; }
.card-symbol svg { width: 21px; height: 21px; }
.primary-card h1, .review-heading h1 { margin: 0; font-size: 22px; line-height: 1.25; letter-spacing: -0.035em; }
.card-copy { margin: 4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.dashboard-actions { display: grid; gap: 12px; margin-top: 23px; }
.drop-hint { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.primary-card.is-dragover { border-color: var(--accent-text); background: var(--accent-soft); }

.last-added { margin-top: 30px; }
.section-label-row { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.section-label { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.section-meta { color: var(--muted); font-size: 12px; }
.last-card { display: flex; align-items: center; gap: 14px; margin-top: 11px; padding: 15px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow-soft); }
.last-card-link { min-height: 74px; text-decoration: none; cursor: pointer; transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease; }
.last-card-link:hover { border-color: #b8cbb3; box-shadow: 0 10px 23px rgba(62, 67, 48, 0.11); }
.last-card-link:active { transform: scale(0.99); }
.last-copy { min-width: 0; flex: 1; }
.last-title, .last-details { margin: 0; }
.last-title { overflow: hidden; font-size: 15px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.last-details { margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.last-open { display: inline-flex; align-items: center; margin-top: 7px; color: var(--accent-text); font-size: 12px; font-weight: 700; }
.last-open-icon { display: grid; place-items: center; width: 32px; height: 44px; flex: 0 0 32px; color: var(--accent-text); }
.last-open-icon svg { width: 19px; height: 19px; }
.email-capture { margin-top: 22px; padding: 17px; border: 1px solid var(--accent-border); border-radius: var(--radius-lg); background: var(--accent-soft); text-align: center; }
.email-capture h2 { margin: 0; font-size: 16px; }
.email-capture > p { margin: 5px 0 13px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.email-capture-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.email-capture-row .field-control { min-width: 0; background: white; }
.email-capture-row .button { min-height: 46px; padding-inline: 14px; }
.email-capture-message { min-height: 18px; margin: 8px 0 0; color: var(--success); font-size: 12px; font-weight: 600; }
.privacy-copy { margin: auto 8px 0; padding-top: 34px; color: var(--muted); font-size: 12px; line-height: 1.55; text-align: center; }

.processing-screen { display: flex; min-height: 100%; flex-direction: column; align-items: center; justify-content: center; padding: 30px 28px; text-align: center; }
.processing-mark { position: relative; display: grid; place-items: center; width: 160px; height: 160px; }
.processing-ring { position: absolute; border-radius: 50%; }
.processing-ring.outer { inset: 0; border: 1px solid #cadcc6; }
.processing-ring.dashed { inset: 8px; border: 1px dashed #9ab293; animation: slow-spin 12s linear infinite; }
.processing-ring.inner { inset: 20px; background: #edf5ea; }
.processing-icon { position: relative; display: grid; place-items: center; width: 80px; height: 80px; border: 1px solid #d8e7d3; border-radius: 26px; background: var(--card); box-shadow: 0 10px 26px rgba(62,67,48,0.08); }
.processing-icon img { width: 58px; height: 58px; object-fit: contain; }
.sparkle-badge { position: absolute; right: -1px; top: 16px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--accent-text); background: #f6e8df; box-shadow: var(--shadow-soft); animation: soft-pulse 1.8s ease-in-out infinite; }
.sparkle-badge svg { width: 16px; height: 16px; }
.processing-screen .eyebrow { margin-top: 34px; }
.processing-screen h1 { max-width: 310px; margin: 12px 0 0; font-size: 27px; line-height: 1.25; letter-spacing: -0.04em; }
.processing-message { min-height: 23px; margin: 10px 0 0; color: var(--accent-text); font-size: 15px; font-weight: 600; }
.progress-wrap { width: 100%; max-width: 266px; margin-top: 28px; }
.progress-track { height: 6px; overflow: hidden; border-radius: 99px; background: #dde9da; }
.progress-fill { height: 100%; border-radius: inherit; background: #849a7d; transition: width 500ms ease-out; }
.progress-help { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes soft-pulse { 50% { transform: scale(1.08); opacity: 0.72; } }

.review-content { padding-top: 57px; }
.review-card { padding: 20px; border: 1px solid rgba(255,255,255,0.8); border-radius: var(--radius-xl); background: var(--card); box-shadow: var(--shadow-card); }
.review-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.review-heading .eyebrow { margin-bottom: 4px; }
.narrative-panel { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 18px; padding: 13px; border: 1px solid var(--accent-border); border-radius: 17px; background: var(--accent-soft); }
.narrative-icon { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 36px; border-radius: 12px; color: var(--accent-text); background: #f0d9ca; }
.narrative-icon svg { width: 18px; height: 18px; }
.narrative-title, .narrative-copy { margin: 0; }
.narrative-title { color: #715d52; font-size: 12px; font-weight: 700; }
.narrative-copy { margin-top: 4px; color: #765f54; font-size: 12px; line-height: 1.5; }
.assumption-list { margin: 7px 0 0; padding-left: 17px; color: #765f54; font-size: 12px; line-height: 1.45; }

.review-form { display: grid; gap: 13px; }
.field-group { display: block; min-width: 0; }
.field-label { display: block; margin: 0 0 6px 4px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; line-height: 1.3; text-transform: uppercase; }
.field-control {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--foreground);
  background: #f8faf7;
  /* 16px minimum: anything smaller makes iOS Safari/WKWebView auto-zoom the page
     when the control is focused, leaving the review form panned off screen. */
  font-size: 16px;
  line-height: 1.35;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field-control:focus { border-color: var(--accent-text); outline: none; box-shadow: 0 0 0 3px rgba(217,161,135,0.27); }
.field-control:disabled { color: var(--muted); opacity: 1; background: #f1f4ef; }
textarea.field-control { resize: vertical; min-height: 76px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.field-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-grid.three .field-group:first-child { grid-column: 1 / -1; }
.field-help { margin: 6px 4px 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.end-date-reveal { display: inline-flex; align-items: center; justify-self: start; min-height: 44px; margin: -13px 0 -13px 4px; padding: 0; border: 0; background: none; color: var(--accent-text); font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.field-warning { color: var(--accent-text); }
.field-error { margin: 2px 0 0; padding: 10px 12px; border-radius: 12px; color: #8a3933; background: var(--danger-soft); font-size: 12px; font-weight: 600; }
.all-day-row { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 4px; font-size: 13px; font-weight: 600; }
.all-day-row input { width: 18px; height: 18px; accent-color: var(--foreground); }

.calendar-control { position: relative; }
.calendar-dot { position: absolute; z-index: 1; top: 50%; left: 14px; width: 12px; height: 12px; border-radius: 50%; background: #849a7d; transform: translateY(-50%); pointer-events: none; }
.calendar-control .field-control { padding-left: 37px; }
.calendar-control select, .calendar-readonly { font-weight: 600; }
.calendar-readonly { display: flex; align-items: center; }
.calendar-signin { display: flex; align-items: center; color: #875442; font-weight: 600; text-align: left; cursor: pointer; }
.calendar-signin:hover { border-color: var(--accent-text); background: var(--accent-soft); }

.multi-summary { margin-bottom: 14px; }
.event-stack { display: grid; gap: 13px; }
.event-card { padding: 15px; border: 1px solid var(--border); border-left: 4px solid #a6c6d7; border-radius: 17px; background: var(--card); box-shadow: var(--shadow-soft); }
.event-card.is-added { border-left-color: var(--success-strong); background: #fbfdf9; }
.event-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.event-card-title { margin: 0; font-size: 15px; line-height: 1.35; }
.event-summary-lines { display: grid; gap: 7px; margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.42; }
.event-summary-line { display: flex; align-items: flex-start; gap: 7px; }
.event-summary-line svg { width: 15px; height: 15px; flex: 0 0 15px; margin-top: 1px; color: #6f9bb2; }
.event-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; }
.edit-event-button { display: inline-flex; min-height: 44px; align-items: center; gap: 6px; padding: 8px 10px; border: 0; border-radius: 10px; color: #7f4f40; background: var(--accent-soft); font-size: 12px; font-weight: 700; cursor: pointer; }
.edit-event-button svg { width: 16px; height: 16px; flex: 0 0 16px; }
.individual-add { min-height: 44px; padding: 9px 12px; border: 0; border-radius: 11px; color: white; background: #5b7482; font-size: 12px; font-weight: 700; cursor: pointer; }
.individual-add.is-added { color: var(--success); background: var(--success-soft); cursor: default; }
.event-editor { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }

.result-screen { display: flex; min-height: 100%; flex-direction: column; align-items: center; justify-content: center; padding: 34px 24px; text-align: center; }
.result-icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 24px; color: var(--accent-text); background: var(--accent-soft); }
.result-icon svg { width: 31px; height: 31px; }
.result-screen h1 { margin: 20px 0 0; font-size: 25px; letter-spacing: -0.035em; }
.result-screen p { max-width: 300px; margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.result-actions { display: grid; width: 100%; gap: 10px; margin-top: 24px; }
.report-link { min-height: 44px; border: 0; background: transparent; color: var(--muted); font-size: 12px; text-decoration: underline; cursor: pointer; }

.toast-region { position: fixed; z-index: 100; top: max(16px, env(safe-area-inset-top)); left: 50%; width: min(420px, calc(100vw - 28px)); transform: translateX(-50%); pointer-events: none; }
.toast { display: flex; align-items: center; gap: 9px; padding: 12px 15px; border-radius: 14px; color: white; background: var(--success); box-shadow: 0 10px 25px rgba(0,0,0,0.18); font-size: 13px; font-weight: 700; animation: toast-in 180ms ease-out; }
.toast svg { width: 17px; height: 17px; flex: 0 0 auto; }
.toast.error { background: #8f4039; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-8px); } }

.dialog-backdrop { position: fixed; z-index: 90; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(45,51,40,0.46); }
.dialog-card { position: relative; width: min(430px, 100%); padding: 24px; border-radius: 24px; background: var(--card); box-shadow: 0 24px 60px rgba(0,0,0,0.22); }
.dialog-card h2 { margin: 6px 0 0; font-size: 22px; }
.dialog-copy { margin: 7px 0 18px; color: var(--muted); font-size: 13px; }
.dialog-close { position: absolute; top: 10px; right: 10px; font-size: 26px; }
.dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.boot-state { display: grid; min-height: 100%; place-items: center; color: var(--muted); font-size: 13px; }

@media (max-width: 699px) {
  body { display: block; padding: 0; background: var(--background); }
  .app-shell { width: 100vw; height: 100dvh; max-width: none; border: 0; border-radius: 0; box-shadow: none; }
}

body.is-capacitor { display: block; padding: 0; background: var(--background); }
body.is-capacitor .app-shell { width: 100vw; height: 100dvh; max-width: none; border: 0; border-radius: 0; box-shadow: none; }

@media (max-width: 350px) {
  .public-screen { padding-inline: 20px; }
  .public-tagline { font-size: 22px; }
  .content-pad { padding-inline: 14px; }
  .review-card, .primary-card { padding: 16px; }
  .field-grid, .field-grid.three { grid-template-columns: 1fr; }
  .email-capture-row { grid-template-columns: 1fr; }
}

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