/* ============================================================
   Artwork Preventivatore — quote.css
   ============================================================ */

.acq-wrap {
  --acq-font:    'Graphik', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --acq-ink:     #1d1d1f;
  --acq-muted:   #6e6e73;
  --acq-hint:    #a1a1a6;
  --acq-border:  #e0e0e5;
  --acq-bg:      #ffffff;
  --acq-bg-alt:  #f5f5f7;
  --acq-ai:      #f0f0ff;
  --acq-ai-bd:   #c8c8ff;
  --acq-radius:  12px;
  --acq-ease:    cubic-bezier(.4,0,.2,1);
  max-width: 620px;
  margin: 0 auto;
  padding: 2rem 0 0;
  font-family: var(--acq-font);
  color: var(--acq-ink);
  box-sizing: border-box;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
.acq-screen        { display: none; opacity: 0; }
.acq-screen.active { display: block; animation: acq-in .38s var(--acq-ease) both; }
@keyframes acq-in  { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.acq-loading-overlay {
  display: none; position: absolute; inset: 0; z-index: 20;
  background: rgba(255,255,255,.88); backdrop-filter: blur(4px);
  flex-direction: column; align-items: center; justify-content: center; gap: 14px; border-radius: 8px;
}
.acq-loading-overlay.visible { display: flex; }
.acq-spinner { width: 34px; height: 34px; border: 2.5px solid rgba(29,29,31,.1); border-top-color: #121212; border-radius: 50%; animation: acq-spin .7s linear infinite; }
.acq-loading-label { font-size: 11px; font-weight: 500; color: var(--acq-muted); letter-spacing: .06em; text-transform: uppercase; }
@keyframes acq-spin { to { transform: rotate(360deg); } }
.acq-progress-bar { width: 100%; height: 3px; background: var(--acq-border); border-radius: 3px; margin-bottom: 10px; overflow: hidden; }
.acq-progress-fill { height: 100%; background: #121212; border-radius: 3px; transition: width .45s var(--acq-ease); }
.acq-step-label { font-size: 12px !important; font-weight: 500; letter-spacing: .08em; color: var(--acq-hint); margin: 0 0 20px; text-align: right; }
.acq-hero-topbar { display: flex; align-items: center; justify-content: flex-start; margin-bottom: 20px; flex-direction: row; gap: 15px; }
.acq-hero-tag { display: inline-block; font-size: 13px !important; font-weight: 600; color: #121212 !important; background: none; border: 0.5px solid #121212; padding: 5px 14px; border-radius: 50px; }
.acq-hero-timer { font-size: 12px; font-weight: 400; color: var(--acq-hint); letter-spacing: .02em; }
.acq-hero { padding: 0 0 50px; }
.acq-hero-title { font-size: clamp(28px,5vw,42px); font-weight: 700; line-height: 1.1; letter-spacing: -.03em; margin: 0 0 14px; color: #121212 !important; }
.acq-hero-sub { font-size: 16px; font-weight: 400; line-height: 1.65; color: var(--acq-muted); margin: 0 0 32px; max-width: 460px; }
#acq-s0 { overflow: visible; }
.acq-marquee-wrap { display: block; overflow: hidden; margin-left: -8.4%; margin-right: -8.4%; }
.acq-modal-shell .acq-marquee-wrap { margin-left: 0 !important; margin-right: 0 !important; }
.acq-marquee-track { display: flex; gap: 30px; width: max-content; padding: 12px 0 16px; transform: translateX(-70px); animation: acq-marquee 28s linear infinite; }
.acq-marquee-wrap:hover .acq-marquee-track { animation-play-state: paused; }
@keyframes acq-marquee { from { transform: translateX(-70px); } to { transform: translateX(calc(-50% - 70px)); } }
.acq-marquee-card { width: 200px; height: 200px; border-radius: 18px; flex-shrink: 0; overflow: hidden; transform: rotate(var(--rot)); transition: transform .35s var(--acq-ease), box-shadow .35s var(--acq-ease); cursor: default; box-shadow: 0 4px 20px rgba(0,0,0,.15); background: var(--acq-bg-alt); }
.acq-marquee-card img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.acq-marquee-card:hover { transform: rotate(0deg) scale(1.06); box-shadow: 0 10px 32px rgba(0,0,0,.22); }
.acq-ai-custom-wrap { margin-top: 8px; animation: acq-in .3s var(--acq-ease) both; }
.acq-ai-custom-text { width: 100%; padding: 13px 15px; font-family: var(--acq-font); font-size: 14px; font-weight: 400; color: var(--acq-ink); background: var(--acq-ai); border: 1px solid var(--acq-ai-bd); border-radius: var(--acq-radius); outline: none; box-sizing: border-box; resize: vertical; transition: border-color .15s, box-shadow .15s; line-height: 1.6; min-height: 100px; }
.acq-ai-custom-text:focus { border-color: #4444cc; box-shadow: 0 0 0 3px rgba(68,68,204,.08); }
.acq-question { font-size: clamp(18px,2.8vw,22px); font-weight: 600; line-height: 1.3; letter-spacing: -.02em; margin: 0 0 6px; }
.acq-question--sub { font-size: 16px; margin-top: 24px; }
.acq-optional { font-size: 12px; font-weight: 400; color: var(--acq-hint); }
.acq-sub { font-size: 13px; color: var(--acq-muted); margin: 0 0 20px; line-height: 1.55; }
.acq-opts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.acq-opt { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--acq-border); border-radius: var(--acq-radius); background: var(--acq-bg); cursor: pointer; text-align: left; transition: border-color .15s, background .15s, box-shadow .15s, transform .15s; -webkit-tap-highlight-color: transparent; font-family: var(--acq-font); color: #121212 !important; -webkit-text-fill-color: #121212 !important; }
.acq-opt:hover { border-color: #b0b0b8; background: var(--acq-bg-alt); transform: translateY(-1px); box-shadow: 0 2px 10px rgba(0,0,0,.07); }
.acq-opt.selected { border-color: #121212; background: #f8f8f8; box-shadow: inset 0 0 0 .5px #121212; }
.acq-opt:active { transform: scale(.99); }
.acq-opt.acq-opt--ai { border-color: var(--acq-ai-bd); background: var(--acq-ai); }
.acq-opt.acq-opt--ai:hover { border-color: #9898f0; background: #e8e8ff; }
.acq-opt.acq-opt--ai.selected { border-color: #4444cc; background: #ebebff; box-shadow: inset 0 0 0 .5px #4444cc; }
.acq-opt-icon { width: 32px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.acq-opt-icon svg { display: block; }
.acq-opt-body { display: flex; flex-direction: column; gap: 2px; }
.acq-opt-body strong { font-size: 14px; font-weight: 600; color: #121212 !important; -webkit-text-fill-color: #121212 !important; letter-spacing: -.01em; }
.acq-opt-body em { font-size: 12px; font-style: normal; color: var(--acq-muted) !important; -webkit-text-fill-color: var(--acq-muted) !important; line-height: 1.4; }
.acq-dot { width: 16px; height: 16px; border-radius: 3px; border: 1px solid var(--acq-border); flex-shrink: 0; position: relative; transition: border-color .15s, background .15s; }
.acq-dot::after { content: ''; position: absolute; inset: 3px; border-radius: 2px; background: transparent; transition: background .15s; }
.acq-opt.selected .acq-dot { border-color: #121212; }
.acq-opt.selected .acq-dot::after { background: #121212; }
.acq-field { margin-bottom: 12px; }
.acq-field label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.acq-field input { width: 100%; padding: 13px 15px; font-family: var(--acq-font); font-size: 15px; font-weight: 400; color: var(--acq-ink); background: var(--acq-bg); border: 1px solid var(--acq-border); border-radius: 6px; outline: none; box-sizing: border-box; transition: border-color .15s, box-shadow .15s; appearance: none; -webkit-appearance: none; }
.acq-field input:focus { border-color: #121212; box-shadow: 0 0 0 3px rgba(18,18,18,.08); }
.acq-field input::placeholder { color: var(--acq-hint); }
.acq-saved-msg { font-size: 11px; color: #34c759; letter-spacing: .04em; margin: 6px 0 0; opacity: 0; transition: opacity .3s; }
.acq-saved-msg.visible { opacity: 1; }
.acq-privacy { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0 16px; }
.acq-privacy input { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; accent-color: #121212; }
.acq-privacy label { font-size: 12px; color: var(--acq-muted); line-height: 1.65; cursor: pointer; position: static; width: auto; height: auto; clip: auto; overflow: visible; white-space: normal; }
.acq-privacy a { color: var(--acq-ink); text-decoration: underline; text-underline-offset: 2px; }
.acq-turnstile { margin: 12px 0; }
.acq-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.acq-btn { font-family: var(--acq-font); font-size: 13px; font-weight: 400; text-transform: uppercase; letter-spacing: .07em; padding: 14px 28px; border-radius: 50px; border: 1px solid #d2d2d7; cursor: pointer; background: #fff; color: #121212; transition: background .2s, border-color .2s, transform .2s, box-shadow .2s, opacity .2s; -webkit-tap-highlight-color: transparent; white-space: nowrap; outline: none; }
.acq-btn:hover { background: var(--acq-bg-alt); border-color: #a0a0a8; transform: translateY(-1px); }
.acq-btn:active { transform: scale(.97); }
.acq-btn--primary { background: #121212; color: #fff !important; -webkit-text-fill-color: #fff !important; border-color: #121212; }
.acq-btn--primary:hover { background: #242424; border-color: #242424; opacity: .8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.acq-btn--large { padding: 18px 36px; font-size: 14px; }
.acq-btn-arrow  { margin-left: 8px; }
.acq-btn:disabled, .acq-btn--primary:disabled { opacity: .25; cursor: not-allowed; pointer-events: none; transform: none; }
.acq-btn--back { display: inline-flex; align-items: center; gap: 5px; font-family: var(--acq-font); font-size: 13px; font-weight: 400; color: var(--acq-hint) !important; -webkit-text-fill-color: var(--acq-hint) !important; cursor: pointer; background: none; border: none; padding: 0; transition: color .15s; order: -1; letter-spacing: .01em; }
.acq-btn--back::before { content: ''; display: inline-block; width: 16px; height: 16px; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1a6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; transition: background-image .15s; }
.acq-btn--back:hover { color: var(--acq-muted) !important; -webkit-text-fill-color: var(--acq-muted) !important; }
.acq-btn--back:hover::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E"); }
.acq-btn--loading { position: relative; pointer-events: none; color: transparent !important; -webkit-text-fill-color: transparent !important; opacity: 1 !important; }
.acq-btn--loading::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: acq-spin .65s linear infinite; }
.acq-thanks      { text-align: center; padding: 4rem 1rem; }
.acq-thanks-icon { margin-bottom: 20px; }
.acq-thanks-icon svg { display: inline-block; }
.acq-thanks-title { font-size: clamp(24px,4vw,32px) !important; font-weight: 700; letter-spacing: -.03em; margin: 0 0 16px; color: var(--acq-ink); line-height: 1.2; }
.acq-thanks-body  { font-size: 15px; color: var(--acq-muted); line-height: 1.75; max-width: 400px; margin: 0 auto 16px; }
.acq-thanks-sub   { font-size: 12px; color: var(--acq-hint); letter-spacing: .1em; }
.acq-modal-overlay { display: none; position: fixed; inset: 0; z-index: 9999999; background: rgba(252,252,252,.94); align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); height: 100%; overflow-y: auto; }
.acq-modal-overlay.is-open { display: flex; animation: acq-overlay-in .3s var(--acq-ease) both; }
.acq-modal-overlay.is-closing { animation: acq-overlay-out .22s var(--acq-ease) both; }
@keyframes acq-overlay-in  { from { opacity:0; } to { opacity:1; } }
@keyframes acq-overlay-out { from { opacity:1; } to { opacity:0; } }
.acq-modal-shell { position: relative; width: 100%; max-width: 620px; max-height: 88vh; border-radius: 20px; border: 0.5px solid #E0E0E0; background: #fff; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; display: flex; flex-direction: column; animation: acq-modal-in .34s var(--acq-ease) both; scrollbar-width: thin; box-shadow: 0 24px 60px rgba(0,0,0,.14); }
.acq-modal-overlay.is-closing .acq-modal-shell { animation: acq-modal-out .22s var(--acq-ease) both; }
@keyframes acq-modal-in { from { opacity:0; transform: translateY(20px) scale(.97); } to { opacity:1; transform: translateY(0) scale(1); } }
@keyframes acq-modal-out { from { opacity:1; transform: translateY(0) scale(1); } to { opacity:0; transform: translateY(12px) scale(.97); } }
.acq-modal-inner { position: relative; width: 800px; max-width: 800px; padding: 48px 52px 40px; box-sizing: border-box; background-color: #fff; border-radius: 20px; border: 0.5px solid #EAEAEA; }
.acq-modal-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 50%; background: transparent; border: 0.5px solid rgba(0,0,0,.2); cursor: pointer; font-size: 18px; line-height: 1; color: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; transition: border-color .15s, color .15s, background .15s; z-index: 2; }
.acq-modal-close:hover { background: rgba(0,0,0,.06); color: rgba(0,0,0,.8); }
.acq-modal-btn { font-family: var(--acq-font); font-size: 13px; font-weight: 400; text-transform: uppercase; letter-spacing: .07em; padding: 14px 28px; border-radius: 50px; background: #121212; color: #fff; border: none; cursor: pointer; transition: opacity .2s, transform .2s, box-shadow .2s; display: inline-block; }
.acq-modal-btn:hover { opacity: .78; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.acq-modal-shell .acq-marquee-wrap { display: none !important; }
.acq-wrap button, .acq-wrap button * { -webkit-appearance: none; appearance: none; color: inherit; -webkit-text-fill-color: inherit; }
.acq-opt, .acq-opt *, .acq-opt-body strong, .acq-opt-body em { -webkit-text-fill-color: currentColor; }
.acq-opts--multi .acq-opt { color: #121212 !important; -webkit-text-fill-color: #121212 !important; }
body.acq-modal-open { overflow: hidden; }

@media (max-width: 690px) {
  .acq-modal-overlay { padding: 0; align-items: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .acq-modal-shell { max-width: 100%; min-height: 95vh; height: auto; max-height: none; border-radius: 20px 20px 0 0; overflow: visible; animation: acq-modal-fs .3s var(--acq-ease) both; margin-top: 5vh; }
  .acq-modal-inner { width: 100%; border-radius: 0; border: none; height: 100vh; overflow: visible; padding: 40px 24px 80px; }
  .acq-wrap { padding-bottom: 20px; }
  .acq-modal-overlay.is-closing .acq-modal-shell { animation: acq-modal-fs-out .22s var(--acq-ease) both; }
  @keyframes acq-modal-fs { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes acq-modal-fs-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(60px); } }
  .acq-modal-close { position: fixed; top: 10px; right: 12px; z-index: 10000000; background: rgba(255,255,255,.9); backdrop-filter: blur(4px); box-shadow: 0 2px 8px rgba(0,0,0,.12); }
  .acq-hero-topbar { padding-top: 30px; }
  .acq-hero { padding: 0 0 100px; }
  .acq-marquee-wrap { margin-left: -24px; margin-right: -24px; }
}
