body.dyc-survey.creator-satisfaction-page {
--survey-bg: var(--dyc-ui-canvas);
--survey-bg-soft: var(--dyc-ui-surface-soft);
--survey-card: var(--dyc-ui-surface);
--survey-card-solid: var(--dyc-ui-surface);
--survey-text: var(--dyc-ui-text);
--survey-muted: var(--dyc-ui-text-muted);
--survey-line: var(--dyc-ui-border);
--survey-line-strong: var(--dyc-ui-border-strong);
--survey-primary: var(--dyc-ui-brand);
--survey-primary-strong: var(--dyc-ui-brand);
--survey-primary-soft: var(--dyc-ui-brand-soft);
--survey-secondary: var(--dyc-ui-info);
--survey-success: var(--dyc-ui-success);
--survey-success-soft: var(--dyc-ui-success-soft);
--survey-warning: var(--dyc-ui-warning);
--survey-warning-soft: var(--dyc-ui-warning-soft);
--survey-danger: var(--dyc-ui-danger);
--survey-danger-soft: var(--dyc-ui-danger-soft);
--survey-shadow: var(--dyc-ui-raised-shadow);
--survey-shadow-small: var(--dyc-ui-card-shadow);
--survey-radius: var(--dyc-ui-radius-lg);
--survey-radius-small: var(--dyc-ui-radius);
--survey-focus: 0 0 0 3px var(--dyc-ui-focus);
--survey-motion-ease: cubic-bezier(.2, .72, .2, 1);
}

.dyc-survey,
.dyc-survey * {
box-sizing: border-box;
}

html[data-dyc-creator-page][data-dyc-creator-module="survey"] {
min-width: 320px;
scroll-behavior: smooth;
scroll-padding-top: 144px;
background: var(--dyc-ui-canvas);
}

body.dyc-survey.creator-satisfaction-page {
min-width: 320px;
min-height: 100vh;
margin: 0;
color: var(--survey-text);
background:
  radial-gradient(circle at 8% 3%, color-mix(in srgb, var(--dyc-ui-brand) 12%, transparent), transparent 30rem),
  radial-gradient(circle at 94% 12%, color-mix(in srgb, var(--dyc-ui-info) 10%, transparent), transparent 28rem),
  var(--survey-bg);
font-family: var(--dyc-ui-font);
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}

.dyc-survey button,
.dyc-survey input,
.dyc-survey textarea {
font: inherit;
}

.dyc-survey button,
.dyc-survey a,
.dyc-survey label {
-webkit-tap-highlight-color: transparent;
}

.dyc-survey button,
.dyc-survey a {
touch-action: manipulation;
}

.dyc-survey [hidden] {
display: none !important;
}

.dyc-survey .skip-link {
position: fixed;
z-index: 1000;
top: 8px;
left: 8px;
padding: 10px 14px;
border-radius: 10px;
color: #fff;
background: var(--survey-primary-strong);
transform: translateY(-150%);
}

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

.dyc-survey .survey-header {
position: sticky;
z-index: 100;
top: 0;
border-bottom: 1px solid color-mix(in srgb, var(--survey-line) 88%, transparent);
background: color-mix(in srgb, var(--survey-bg) 90%, transparent);
box-shadow: var(--survey-shadow-small);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}

.dyc-survey .survey-header__main,
.dyc-survey .survey-progress,
.dyc-survey .survey-shell,
.dyc-survey .survey-footer {
width: min(1180px, calc(100% - 40px));
margin-inline: auto;
}

.dyc-survey .survey-header__main {
display: flex;
min-height: 76px;
align-items: center;
justify-content: space-between;
gap: 18px;
}

.dyc-survey .survey-brand {
display: inline-flex;
min-width: 0;
min-height: 48px;
align-items: center;
gap: 11px;
color: var(--survey-text);
text-decoration: none;
}

.dyc-survey .survey-brand__logo {
display: grid;
width: 96px;
height: 48px;
overflow: hidden;
flex: 0 0 96px;
grid-template-columns: minmax(0, 1fr);
place-items: center;
}

.dyc-survey .survey-brand__logo img {
width: 132px;
height: auto;
max-width: none;
object-fit: contain;
}

.dyc-survey .survey-brand span,
.dyc-survey .account-copy {
display: grid;
min-width: 0;
}

.dyc-survey .survey-brand strong {
overflow: hidden;
font-size: 17px;
line-height: 1.25;
text-overflow: ellipsis;
white-space: nowrap;
}

.dyc-survey .survey-brand small,
.dyc-survey .account-copy small {
color: var(--survey-muted);
font-size: 12px;
}

.dyc-survey .survey-account {
position: relative;
}

.dyc-survey .account-trigger {
display: inline-flex;
min-width: 0;
min-height: 48px;
align-items: center;
gap: 9px;
padding: 4px 10px 4px 5px;
border: 1px solid var(--survey-line);
border-radius: 999px;
color: var(--survey-text);
background: var(--survey-card-solid);
cursor: pointer;
box-shadow: var(--survey-shadow-small);
transition: border-color 160ms var(--survey-motion-ease), background 160ms var(--survey-motion-ease), transform 160ms var(--survey-motion-ease);
}

.dyc-survey .account-trigger:hover {
border-color: var(--survey-line-strong);
}

.dyc-survey .account-trigger:focus-visible,
.dyc-survey .survey-brand:focus-visible,
.dyc-survey .account-menu a:focus-visible,
.dyc-survey .text-button:focus-visible,
.dyc-survey .dialog-close:focus-visible {
outline: none;
box-shadow: var(--survey-focus);
}

.dyc-survey .account-avatar {
display: grid;
width: 38px;
height: 38px;
flex: 0 0 38px;
place-items: center;
overflow: hidden;
border-radius: 50%;
color: #fff;
background: linear-gradient(145deg, var(--survey-primary), var(--survey-secondary));
font-size: 13px;
font-weight: 800;
}

.dyc-survey .account-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.dyc-survey .account-copy {
max-width: 128px;
text-align: left;
}

.dyc-survey .account-copy strong {
overflow: hidden;
font-size: 13px;
line-height: 1.3;
text-overflow: ellipsis;
white-space: nowrap;
}

.dyc-survey .account-chevron {
width: 8px;
height: 8px;
margin: -4px 2px 0 1px;
border-right: 1.5px solid var(--survey-muted);
border-bottom: 1.5px solid var(--survey-muted);
transform: rotate(45deg);
transition: margin 160ms var(--survey-motion-ease), transform 160ms var(--survey-motion-ease);
}

.dyc-survey .account-trigger[aria-expanded="true"] .account-chevron {
margin-top: 4px;
transform: rotate(225deg);
}

.dyc-survey .account-menu {
position: absolute;
right: 0;
top: calc(100% + 8px);
display: grid;
min-width: 148px;
padding: 7px;
border: 1px solid var(--survey-line);
border-radius: 14px;
background: var(--survey-card-solid);
box-shadow: var(--survey-shadow);
transform-origin: top right;
animation: survey-pop-in 180ms var(--survey-motion-ease) both;
}

.dyc-survey .account-menu a {
min-height: 44px;
padding: 11px 12px;
border-radius: 9px;
color: var(--survey-text);
text-decoration: none;
}

.dyc-survey .account-menu a:hover {
background: var(--survey-primary-soft);
}

.dyc-survey .survey-progress {
padding: 0 0 10px;
}

.dyc-survey .survey-progress__copy {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
margin-bottom: 6px;
font-size: 12px;
}

.dyc-survey .survey-progress__copy strong {
font-size: 13px;
}

.dyc-survey .survey-progress__copy span {
color: var(--survey-muted);
}

.dyc-survey .survey-progress__track {
height: 6px;
overflow: hidden;
border-radius: 999px;
background: color-mix(in srgb, var(--survey-line) 78%, transparent);
}

.dyc-survey .survey-progress__track > span {
display: block;
width: 9.09%;
height: 100%;
border-radius: inherit;
background: linear-gradient(90deg, var(--survey-primary), var(--survey-secondary));
transition: width 260ms var(--survey-motion-ease);
}

.dyc-survey .survey-shell {
padding: 30px 0 54px;
}

.dyc-survey .survey-intro {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: end;
gap: 26px;
padding: 26px 28px;
border: 1px solid var(--survey-line);
border-radius: var(--survey-radius);
background: linear-gradient(135deg, var(--survey-card), color-mix(in srgb, var(--survey-primary-soft) 48%, var(--survey-card)));
box-shadow: var(--survey-shadow);
}

.dyc-survey .survey-intro__eyebrow {
display: inline-flex;
margin-bottom: 8px;
color: var(--survey-primary-strong);
font-size: 12px;
font-weight: 800;
letter-spacing: 0.08em;
}

.dyc-survey .survey-intro h1 {
max-width: 760px;
margin: 0;
font-size: clamp(24px, 3.4vw, 38px);
line-height: 1.2;
letter-spacing: -0.03em;
}

.dyc-survey .survey-intro p {
max-width: 760px;
margin: 11px 0 0;
color: var(--survey-muted);
}

.dyc-survey .survey-intro__facts {
display: grid;
grid-template-columns: repeat(3, minmax(82px, 1fr));
overflow: hidden;
border: 1px solid var(--survey-line);
border-radius: 16px;
background: var(--survey-card-solid);
}

.dyc-survey .survey-intro__facts span {
display: grid;
min-height: 78px;
place-items: center;
align-content: center;
padding: 9px 12px;
color: var(--survey-muted);
font-size: 11px;
text-align: center;
}

.dyc-survey .survey-intro__facts span + span {
border-left: 1px solid var(--survey-line);
}

.dyc-survey .survey-intro__facts strong {
color: var(--survey-text);
font-size: 23px;
line-height: 1.2;
}

.dyc-survey .page-notice {
margin: 16px 0 0;
padding: 12px 15px;
border: 1px solid var(--survey-line);
border-radius: 13px;
color: var(--survey-text);
background: var(--survey-card-solid);
}

.dyc-survey .page-notice--status.is-error {
border-color: color-mix(in srgb, var(--survey-danger) 35%, var(--survey-line));
color: var(--survey-danger);
background: var(--survey-danger-soft);
}

.dyc-survey .page-notice--status.is-success {
border-color: color-mix(in srgb, var(--survey-success) 35%, var(--survey-line));
color: var(--survey-success);
background: var(--survey-success-soft);
}

.dyc-survey .survey-form {
display: grid;
width: min(920px, 100%);
gap: 18px;
margin: 18px auto 0;
}

.dyc-survey .survey-form.is-flow-ready .survey-module {
display: none;
}

.dyc-survey .survey-form.is-flow-ready .survey-module.is-active-module {
display: block;
}

.dyc-survey .survey-form.is-flow-ready .survey-question {
display: none;
}

.dyc-survey .survey-form.is-flow-ready .survey-question.is-active {
display: block;
width: min(100%, 820px);
grid-column: 1 / -1;
justify-self: center;
margin-inline: auto;
animation: survey-reveal 220ms var(--survey-motion-ease) both;
}

.dyc-survey .survey-module {
padding: 22px;
border: 1px solid var(--survey-line);
border-radius: var(--survey-radius);
background: var(--survey-card);
box-shadow: var(--survey-shadow-small);
}

.dyc-survey .survey-module__header {
display: flex;
align-items: flex-start;
gap: 13px;
margin-bottom: 17px;
}

.dyc-survey .survey-module__header > span {
display: inline-grid;
min-width: 62px;
min-height: 30px;
place-items: center;
padding: 5px 10px;
border-radius: 999px;
color: var(--survey-primary-strong);
background: var(--survey-primary-soft);
font-size: 12px;
font-weight: 800;
}

.dyc-survey .survey-module__header h2 {
margin: 0;
font-size: 20px;
line-height: 1.35;
}

.dyc-survey .survey-module__header p {
margin: 3px 0 0;
color: var(--survey-muted);
font-size: 13px;
}

.dyc-survey .survey-module__questions {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 13px;
}

.dyc-survey .survey-question {
min-width: 0;
padding: 19px;
border: 1px solid var(--survey-line);
border-radius: var(--survey-radius-small);
background: var(--survey-card-solid);
scroll-margin-top: 146px;
transition: border-color 180ms var(--survey-motion-ease), box-shadow 180ms var(--survey-motion-ease), transform 180ms var(--survey-motion-ease);
}

.dyc-survey .survey-question--rating,
.dyc-survey .survey-question--wide {
grid-column: 1 / -1;
}

.dyc-survey .survey-question.is-active {
border-color: color-mix(in srgb, var(--survey-primary) 45%, var(--survey-line));
box-shadow: 0 0 0 3px color-mix(in srgb, var(--survey-primary) 8%, transparent);
}

.dyc-survey .survey-question.has-error {
border-color: color-mix(in srgb, var(--survey-danger) 68%, var(--survey-line));
box-shadow: 0 0 0 3px color-mix(in srgb, var(--survey-danger) 10%, transparent);
}

.dyc-survey .survey-fieldset {
min-width: 0;
margin: 0;
padding: 0;
border: 0;
}

.dyc-survey .survey-question__title {
display: flex;
width: 100%;
align-items: flex-start;
gap: 9px;
margin: 0;
color: var(--survey-text);
font-size: 16px;
font-style: normal;
font-weight: 750;
line-height: 1.48;
}

.dyc-survey .survey-question__number {
display: inline-grid;
width: 27px;
height: 27px;
flex: 0 0 27px;
place-items: center;
border-radius: 9px;
color: var(--survey-primary-strong);
background: var(--survey-primary-soft);
font-size: 12px;
font-weight: 850;
}

.dyc-survey .survey-question__number::before {
content: attr(data-number);
}

.dyc-survey .required-badge,
.dyc-survey .creator-badge {
display: inline-flex;
flex: 0 0 auto;
min-height: 23px;
align-items: center;
margin-top: 1px;
padding: 2px 7px;
border-radius: 999px;
color: var(--survey-danger);
background: var(--survey-danger-soft);
font-size: 10px;
font-style: normal;
font-weight: 800;
white-space: nowrap;
}

.dyc-survey .creator-badge {
color: var(--survey-secondary);
background: color-mix(in srgb, var(--survey-secondary) 11%, transparent);
}

.dyc-survey .survey-question__hint {
margin: 5px 0 13px 36px;
color: var(--survey-muted);
font-size: 12px;
}

.dyc-survey .rating-scale {
display: grid;
grid-template-columns: repeat(10, minmax(44px, 1fr));
gap: 8px;
margin-top: 3px;
}

.dyc-survey .rating-option {
position: relative;
display: block;
min-width: 0;
cursor: pointer;
}

.dyc-survey .rating-option input {
position: absolute;
width: 1px;
height: 1px;
opacity: 0;
pointer-events: none;
}

.dyc-survey .rating-option span {
display: grid;
min-width: 44px;
min-height: 48px;
place-items: center;
border: 1px solid var(--survey-line);
border-radius: 12px;
color: var(--survey-text);
background: var(--survey-bg-soft);
font-size: 14px;
font-weight: 800;
transition: border-color 160ms var(--survey-motion-ease), background 160ms var(--survey-motion-ease), color 160ms var(--survey-motion-ease), box-shadow 160ms var(--survey-motion-ease), transform 160ms var(--survey-motion-ease);
}

.dyc-survey .rating-option:hover span {
border-color: color-mix(in srgb, var(--survey-primary) 48%, var(--survey-line));
transform: translateY(-1px);
}

.dyc-survey .rating-option:active span {
transform: scale(0.975);
}

.dyc-survey .rating-option input:focus-visible + span {
outline: none;
box-shadow: var(--survey-focus);
}

.dyc-survey .rating-option input:checked + span {
border-color: var(--survey-primary);
color: #fff;
background: linear-gradient(145deg, var(--survey-primary), var(--survey-primary-strong));
box-shadow: 0 7px 16px color-mix(in srgb, var(--survey-primary) 24%, transparent);
}

.dyc-survey .rating-ends {
display: flex;
justify-content: space-between;
margin-top: 5px;
color: var(--survey-muted);
font-size: 11px;
}

.dyc-survey .conditional-feedback,
.dyc-survey .other-field {
margin-top: 13px;
padding: 13px;
border: 1px solid color-mix(in srgb, var(--survey-warning) 28%, var(--survey-line));
border-radius: 13px;
background: var(--survey-warning-soft);
animation: survey-reveal 200ms var(--survey-motion-ease) both;
}

.dyc-survey .conditional-feedback label,
.dyc-survey .other-field label {
display: block;
margin-bottom: 7px;
color: var(--survey-text);
font-size: 13px;
font-weight: 700;
}

.dyc-survey .survey-question textarea,
.dyc-survey .survey-question input[type="text"] {
width: 100%;
min-height: 48px;
padding: 12px 13px;
border: 1px solid var(--survey-line-strong);
border-radius: 11px;
outline: 0;
color: var(--survey-text);
background: var(--survey-card-solid);
font-size: 16px;
resize: vertical;
}

.dyc-survey .survey-question textarea {
min-height: 92px;
}

.dyc-survey .survey-question--open textarea {
min-height: 132px;
}

.dyc-survey .survey-question textarea:focus,
.dyc-survey .survey-question input[type="text"]:focus {
border-color: var(--survey-primary);
box-shadow: var(--survey-focus);
}

.dyc-survey .field-note {
display: block;
margin-top: 5px;
color: var(--survey-muted);
font-size: 11px;
}

.dyc-survey .field-error {
margin: 9px 0 0;
color: var(--survey-danger);
font-size: 13px;
font-weight: 700;
}

.dyc-survey .choice-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
}

.dyc-survey .choice-option {
position: relative;
display: flex;
min-width: 0;
min-height: 48px;
align-items: center;
gap: 9px;
padding: 10px 11px;
border: 1px solid var(--survey-line);
border-radius: 12px;
color: var(--survey-text);
background: var(--survey-bg-soft);
cursor: pointer;
font-size: 13px;
line-height: 1.45;
transition: border-color 160ms var(--survey-motion-ease), background 160ms var(--survey-motion-ease), box-shadow 160ms var(--survey-motion-ease), transform 160ms var(--survey-motion-ease);
}

@media (hover: hover) {
.dyc-survey .choice-option:hover {
  border-color: color-mix(in srgb, var(--survey-primary) 42%, var(--survey-line));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--survey-primary) 8%, transparent);
  transform: translateY(-1px);
}
}

.dyc-survey .choice-option:active {
transform: scale(0.992);
}

.dyc-survey .choice-option:has(input:checked) {
border-color: color-mix(in srgb, var(--survey-primary) 68%, var(--survey-line));
background: var(--survey-primary-soft);
}

.dyc-survey .choice-option input {
position: absolute;
width: 1px;
height: 1px;
opacity: 0;
}

.dyc-survey .choice-option__mark {
display: grid;
width: 20px;
height: 20px;
flex: 0 0 20px;
place-items: center;
border: 1.5px solid var(--survey-line-strong);
border-radius: 6px;
background: var(--survey-card-solid);
}

.dyc-survey .choice-option input:checked + .choice-option__mark {
border-color: var(--survey-primary);
background: var(--survey-primary);
}

.dyc-survey .choice-option input:checked + .choice-option__mark::after {
width: 8px;
height: 4px;
border-left: 2px solid #fff;
border-bottom: 2px solid #fff;
content: "";
transform: translateY(-1px) rotate(-45deg);
}

.dyc-survey .choice-option input:focus-visible + .choice-option__mark {
box-shadow: var(--survey-focus);
}

.dyc-survey .choice-option--other {
grid-column: 1 / -1;
}

.dyc-survey .survey-step-nav {
display: grid;
grid-template-columns: minmax(112px, auto) 1fr minmax(112px, auto);
align-items: center;
gap: 10px;
padding: 4px 2px;
}

.dyc-survey .survey-step-nav .text-button {
justify-self: center;
}

.dyc-survey .survey-step-nav [data-step-next] {
justify-self: end;
}

.dyc-survey .survey-submit {
position: sticky;
z-index: 20;
bottom: max(12px, env(safe-area-inset-bottom));
display: flex;
align-items: center;
justify-content: space-between;
gap: 22px;
padding: 17px 19px;
border: 1px solid color-mix(in srgb, var(--survey-primary) 24%, var(--survey-line));
border-radius: 18px;
background: color-mix(in srgb, var(--survey-card-solid) 94%, transparent);
box-shadow: var(--survey-shadow);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
}

.dyc-survey .survey-submit h2 {
margin: 0;
font-size: 17px;
}

.dyc-survey .survey-submit p {
margin: 3px 0 0;
color: var(--survey-muted);
font-size: 12px;
}

.dyc-survey .primary-button,
.dyc-survey .secondary-button,
.dyc-survey .text-button {
display: inline-flex;
min-height: 48px;
align-items: center;
justify-content: center;
gap: 8px;
padding: 11px 18px;
border: 0;
border-radius: 12px;
color: #fff;
background: linear-gradient(135deg, var(--survey-primary), var(--survey-primary-strong));
box-shadow: 0 9px 20px color-mix(in srgb, var(--survey-primary) 22%, transparent);
cursor: pointer;
font-size: 14px;
font-weight: 800;
text-decoration: none;
transition: color 160ms var(--survey-motion-ease), background 160ms var(--survey-motion-ease), box-shadow 160ms var(--survey-motion-ease), transform 160ms var(--survey-motion-ease);
}

.dyc-survey .secondary-button {
border: 1px solid var(--survey-line-strong);
color: var(--survey-text);
background: var(--survey-card-solid);
box-shadow: none;
}

.dyc-survey .text-button {
min-height: 44px;
padding: 8px 11px;
color: var(--survey-primary-strong);
background: transparent;
box-shadow: none;
}

.dyc-survey .text-button:hover {
background: var(--survey-primary-soft);
}

.dyc-survey .primary-button:hover,
.dyc-survey .secondary-button:hover {
transform: translateY(-1px);
}

.dyc-survey .primary-button:not(:disabled):active,
.dyc-survey .secondary-button:not(:disabled):active,
.dyc-survey .text-button:not(:disabled):active,
.dyc-survey .account-trigger:active {
transform: scale(0.985);
}

.dyc-survey .primary-button:focus-visible,
.dyc-survey .secondary-button:focus-visible {
outline: 0;
box-shadow: var(--survey-focus);
}

.dyc-survey .primary-button:disabled,
.dyc-survey .secondary-button:disabled,
.dyc-survey .text-button:disabled {
cursor: not-allowed;
opacity: 0.62;
transform: none;
}

.dyc-survey .submit-button {
flex: 0 0 auto;
min-width: 188px;
}

.dyc-survey .button-spinner {
width: 17px;
height: 17px;
border: 2px solid rgba(255, 255, 255, 0.44);
border-top-color: #fff;
border-radius: 50%;
animation: survey-spin 700ms linear infinite;
}

.dyc-survey .survey-dialog {
width: min(440px, calc(100% - 28px));
max-height: calc(100dvh - 28px);
padding: 0;
overflow: auto;
border: 1px solid var(--survey-line);
border-radius: 22px;
color: var(--survey-text);
background: var(--survey-card-solid);
box-shadow: var(--dyc-ui-modal-shadow);
}

.dyc-survey .survey-dialog[open] {
animation: survey-dialog-in 220ms var(--survey-motion-ease) both;
}

.dyc-survey .survey-dialog::backdrop {
background: rgba(19, 14, 20, 0.54);
backdrop-filter: blur(4px);
animation: survey-backdrop-in 180ms ease-out both;
}

.dyc-survey .survey-dialog__body {
position: relative;
padding: 28px;
text-align: center;
}

.dyc-survey .survey-dialog__body h2 {
margin: 14px 0 6px;
font-size: 22px;
}

.dyc-survey .survey-dialog__body p {
margin: 0;
color: var(--survey-muted);
}

.dyc-survey .dialog-close {
position: absolute;
top: 10px;
right: 10px;
display: grid;
width: 44px;
height: 44px;
place-items: center;
border: 0;
border-radius: 50%;
color: var(--survey-muted);
background: transparent;
cursor: pointer;
font-size: 24px;
}

.dyc-survey .dialog-icon {
display: grid;
width: 58px;
height: 58px;
margin: 2px auto 0;
place-items: center;
border-radius: 19px;
color: #fff;
background: linear-gradient(145deg, var(--survey-primary), var(--survey-secondary));
font-size: 18px;
font-weight: 900;
}

.dyc-survey .dialog-icon--success {
background: var(--survey-success);
font-size: 25px;
}

.dyc-survey .dialog-actions {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 9px;
margin-top: 21px;
}

.dyc-survey .dialog-actions--single {
grid-template-columns: 1fr;
}

.dyc-survey .survey-toast {
position: fixed;
z-index: 300;
right: max(18px, env(safe-area-inset-right));
bottom: max(20px, env(safe-area-inset-bottom));
max-width: min(380px, calc(100% - 36px));
padding: 12px 15px;
border: 1px solid var(--survey-line);
border-radius: 13px;
color: var(--survey-text);
background: var(--survey-card-solid);
box-shadow: var(--survey-shadow);
font-size: 13px;
animation: survey-toast-in 200ms var(--survey-motion-ease) both;
}

.dyc-survey .survey-toast.is-error {
border-color: color-mix(in srgb, var(--survey-danger) 42%, var(--survey-line));
color: var(--survey-danger);
}

.dyc-survey .survey-footer {
display: flex;
min-height: 70px;
align-items: center;
justify-content: space-between;
gap: 16px;
border-top: 1px solid var(--survey-line);
color: var(--survey-muted);
font-size: 12px;
}

@keyframes survey-reveal {
from { opacity: 0; transform: translateY(6px) scale(0.996); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes survey-pop-in {
from { opacity: 0; transform: translateY(-5px) scale(0.985); }
to { opacity: 1; transform: none; }
}

@keyframes survey-dialog-in {
from { opacity: 0; transform: translateY(10px) scale(0.985); }
to { opacity: 1; transform: none; }
}

@keyframes survey-backdrop-in {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes survey-toast-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: none; }
}

@keyframes survey-spin {
to { transform: rotate(360deg); }
}

@media (max-width: 960px) {
.dyc-survey .survey-intro {
  grid-template-columns: 1fr;
}

.dyc-survey .survey-intro__facts {
  width: 100%;
}

}

@media (max-width: 760px) {
html[data-dyc-creator-page][data-dyc-creator-module="survey"] {
  scroll-padding-top: 126px;
}

.dyc-survey .survey-header__main,
.dyc-survey .survey-progress,
.dyc-survey .survey-shell,
.dyc-survey .survey-footer {
  width: min(100% - 24px, 680px);
}

.dyc-survey .survey-header__main {
  min-height: 66px;
}

.dyc-survey .survey-brand__logo {
  width: 80px;
  height: 44px;
  flex-basis: 80px;
}

.dyc-survey .survey-brand__logo img {
  width: 116px;
}

.dyc-survey .survey-brand strong {
  font-size: 15px;
}

.dyc-survey .survey-brand small,
.dyc-survey .account-copy {
  display: none;
}

.dyc-survey .account-trigger {
  width: 48px;
  min-width: 48px;
  padding: 4px;
}

.dyc-survey .account-avatar {
  margin: auto;
}

.dyc-survey .account-chevron {
  display: none;
}

.dyc-survey .survey-progress {
  padding-bottom: 9px;
}

.dyc-survey .survey-shell {
  padding-top: 16px;
}

.dyc-survey .survey-intro,
.dyc-survey .survey-module {
  padding: 17px;
  border-radius: 18px;
}

.dyc-survey .survey-intro h1 {
  font-size: 26px;
}

.dyc-survey .survey-intro__facts span {
  min-height: 68px;
  padding-inline: 6px;
}

.dyc-survey .survey-module__questions,
.dyc-survey .choice-list {
  grid-template-columns: 1fr;
}

.dyc-survey .survey-question {
  grid-column: 1;
  padding: 15px;
  scroll-margin-top: 126px;
}

.dyc-survey .survey-question__title {
  font-size: 15px;
}

.dyc-survey .rating-scale {
  grid-template-columns: repeat(5, minmax(44px, 1fr));
  gap: 7px;
}

.dyc-survey .rating-option span {
  min-height: 46px;
}

.dyc-survey .survey-submit {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.dyc-survey .submit-button {
  width: 100%;
}

.dyc-survey .survey-step-nav {
  grid-template-columns: 1fr 1fr;
}

.dyc-survey .survey-step-nav .text-button {
  grid-column: 1 / -1;
  grid-row: 1;
}

.dyc-survey .survey-step-nav [data-step-previous],
.dyc-survey .survey-step-nav [data-step-next] {
  width: 100%;
}

.dyc-survey .survey-footer {
  min-height: 64px;
}
}

@media (max-width: 420px) {
.dyc-survey .survey-header__main,
.dyc-survey .survey-progress,
.dyc-survey .survey-shell,
.dyc-survey .survey-footer {
  width: calc(100% - 20px);
}

.dyc-survey .survey-brand {
  gap: 8px;
}

.dyc-survey .survey-brand strong {
  max-width: 210px;
}

.dyc-survey .survey-progress__copy {
  gap: 8px;
}

.dyc-survey .survey-progress__copy span {
  font-size: 11px;
}

.dyc-survey .survey-intro,
.dyc-survey .survey-module {
  padding: 14px;
}

.dyc-survey .survey-intro h1 {
  font-size: 23px;
}

.dyc-survey .survey-intro__facts strong {
  font-size: 20px;
}

.dyc-survey .survey-module__header {
  gap: 9px;
}

.dyc-survey .survey-module__header > span {
  min-width: 56px;
}

.dyc-survey .survey-question {
  padding: 13px;
}

.dyc-survey .survey-question__title {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
}

.dyc-survey .required-badge,
.dyc-survey .creator-badge {
  grid-column: 2;
  justify-self: start;
  margin-top: -4px;
}

.dyc-survey .survey-question__hint {
  margin-left: 36px;
}

.dyc-survey .rating-scale {
  gap: 6px;
}

.dyc-survey .rating-option span {
  min-width: 44px;
  min-height: 44px;
  border-radius: 11px;
}

.dyc-survey .conditional-feedback,
.dyc-survey .other-field {
  padding: 11px;
}

.dyc-survey .dialog-actions {
  grid-template-columns: 1fr;
}

.dyc-survey .survey-dialog__body {
  padding: 24px 18px 20px;
}

.dyc-survey .survey-footer {
  display: grid;
  align-content: center;
  justify-content: start;
  gap: 2px;
}
}

@media (max-width: 350px) {
.dyc-survey .survey-brand strong {
  max-width: 176px;
}

.dyc-survey .rating-scale {
  gap: 4px;
}

}

@media (prefers-reduced-motion: reduce) {
html[data-dyc-creator-page][data-dyc-creator-module="survey"] {
  scroll-behavior: auto;
}

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