/* ===== CorFest · Rainbow Run Trofa — design system ===== */
:root {
  --ink: #160a23;
  --ink-soft: #241334;
  --white: #ffffff;
  --cream: #fff7fb;
  --muted: #9b8fae;

  --red:    #ff3b6b;
  --orange: #ff8a3d;
  --yellow: #ffd23f;
  --green:  #29e08a;
  --blue:   #2bc8ff;
  --purple: #8b5cff;
  --pink:   #ff5fd2;

  --rainbow: linear-gradient(90deg,#ff3b6b,#ff8a3d,#ffd23f,#29e08a,#2bc8ff,#8b5cff,#ff5fd2);
  --rainbow-soft: linear-gradient(120deg,#ff3b6b22,#2bc8ff22,#29e08a22);

  --radius: 22px;
  --shadow: 0 24px 60px -24px rgba(10,0,30,.55);
  --ease: cubic-bezier(.22,1,.36,1);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

#powder { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; opacity: .5; }

.container { width: min(var(--container), 92vw); margin-inline: auto; position: relative; z-index: 2; }
.section { padding: clamp(70px, 11vw, 140px) 0; position: relative; z-index: 2; }

/* ---------- Typography helpers ---------- */
.rainbow-text {
  background: var(--rainbow);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: hue 6s linear infinite;
}
@keyframes hue { to { background-position: 200% center; } }

.kicker {
  display: inline-block;
  font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pink);
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,95,210,.1); border: 1px solid rgba(255,95,210,.25);
  margin-bottom: 18px;
}
.kicker--light { color: var(--white); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }

.section__title {
  font-family: "Fredoka", sans-serif; font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -.01em;
}
.section__head { max-width: 720px; margin-bottom: 54px; }
.lead { font-size: 1.15rem; color: #e7ddf2; margin: 16px 0; }
.muted { color: var(--muted); }
.muted a { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 100px;
  cursor: pointer; border: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform;
}
.btn--primary { color: #1a0a26; background: var(--rainbow); background-size: 200% auto; box-shadow: 0 14px 30px -10px rgba(255,59,107,.6); }
.btn--primary:hover { transform: translateY(-3px) scale(1.02); background-position: right center; box-shadow: 0 20px 42px -12px rgba(43,200,255,.6); }
.btn--ghost { color: #fff; background: transparent; border: 1.5px solid rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.btn--small { padding: 10px 20px; font-size: .9rem; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  transition: background .4s, padding .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(22,10,35,.72); backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav__logo {
  font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 1.5rem;
  display: inline-flex; align-items: center; gap: 9px; margin-right: auto;
}
.nav__logo-accent { color: var(--pink); }
.nav__logo-pre { font-size: .62em; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; margin-right: 8px; align-self: center; }
.nav__logo .rainbow-text { font-family: "Fredoka", sans-serif; }
.nav__logo-img { height: 46px; width: auto; display: block; border-radius: 9px; }
@media (max-width: 540px) { .nav__logo-img { height: 38px; } }
.nav__logo-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--rainbow); animation: hue 5s linear infinite; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { font-weight: 600; font-size: .95rem; color: #e9e0f4; opacity: .85; transition: opacity .2s, color .2s; }
.nav__links a:hover { opacity: 1; color: var(--pink); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: .3s; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 20px 80px; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 50% -10%, #3a1457 0%, transparent 60%),
    var(--ink);
}
.hero__video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  pointer-events: none; border: 0;
}
.hero__video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(58,20,87,.55) 0%, transparent 60%),
    linear-gradient(180deg, rgba(22,10,35,.78), rgba(22,10,35,.86) 60%, rgba(22,10,35,.97));
}
.hero__blobs { position: absolute; inset: 0; z-index: 1; opacity: .7; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; will-change: transform; }
.blob--pink   { width: 420px; height: 420px; background: var(--pink);   top: 8%;  left: 6%; }
.blob--blue   { width: 380px; height: 380px; background: var(--blue);   top: 50%; left: -6%; }
.blob--yellow { width: 320px; height: 320px; background: var(--yellow); top: 12%; right: 8%; }
.blob--green  { width: 360px; height: 360px; background: var(--green);  bottom: 2%; right: 4%; }
.blob--purple { width: 300px; height: 300px; background: var(--purple); bottom: 8%; left: 30%; }

.hero__inner { position: relative; z-index: 3; max-width: 980px; }
.hero__logo {
  width: min(560px, 80vw); height: auto; display: block; margin: 0 auto 26px;
  border-radius: 18px; box-shadow: 0 30px 70px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
}
.hero__date { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.hero__date-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1rem; color: #fff;
  padding: 11px 20px; border-radius: 100px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.hero__date-ico { font-size: 1.1rem; }
.hero__eyebrow {
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .9rem;
  color: var(--yellow); margin-bottom: 20px;
}
.hero__title {
  font-family: "Fredoka", sans-serif; font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 7rem); line-height: .94; letter-spacing: -.02em;
  text-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero__title .reveal-line { display: block; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.4rem); color: #efe6fa; margin: 28px auto 0; max-width: 620px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero__meta { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 40px; color: #cdbfe0; font-size: .98rem; }
.hero__meta strong { color: #fff; }
.hero__meta .dot { color: var(--purple); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll-line { width: 1.5px; height: 46px; background: linear-gradient(var(--pink), transparent); animation: scrollPulse 1.8s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- TICKER ---------- */
.ticker { background: var(--rainbow); background-size: 200% auto; animation: hue 8s linear infinite; padding: 14px 0; overflow: hidden; position: relative; z-index: 2; }
.ticker__track { display: flex; white-space: nowrap; animation: ticker 22s linear infinite; }
.ticker__track span { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 1.2rem; color: #1a0a26; letter-spacing: .04em; }
@keyframes ticker { to { transform: translateX(-33.33%); } }

/* ---------- EVENTO ---------- */
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.evento .lead { color: #efe6fa; }
.evento p { color: #cdbfe0; margin-bottom: 14px; }
.evento .btn { margin-top: 14px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 28px 22px; backdrop-filter: blur(6px);
}
.stat--wide { grid-column: 1 / -1; }
.stat__num { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); display: block; line-height: 1; background: var(--rainbow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: var(--muted); font-size: .95rem; margin-top: 8px; display: block; }

/* ---------- Event details ---------- */
.event-details { list-style: none; display: grid; gap: 12px; margin: 26px 0; }
.event-details li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border-radius: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.event-details__ico { font-size: 1.5rem; line-height: 1; }
.event-details strong { display: block; font-size: 1.08rem; }
.event-details span { color: var(--muted); font-size: .9rem; }

/* ---------- KIT ---------- */
.kit { background: linear-gradient(180deg, transparent, rgba(139,92,255,.06), transparent); }
.kit__grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px; }
.kit__item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  font-weight: 600; transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.kit__item:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: rgba(255,95,210,.4); }
.kit__emoji { font-size: 1.7rem; line-height: 1; }

/* ---------- GALERIA ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; gap: 16px; }
.gallery__item {
  border-radius: var(--radius); position: relative; overflow: hidden;
  will-change: transform; box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; transition: transform .35s var(--ease);
}
.gallery__item:hover { transform: translateY(-5px) scale(1.01); }
.g-art { background-size: cover; background-position: center; }
.g-tag::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.35)); }
.g-tag__emoji { font-size: 2rem; position: relative; z-index: 1; }
.g-tag__txt { position: relative; z-index: 1; font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.15rem; color: #fff; margin-top: 6px; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.g-tag--pink    { background: linear-gradient(135deg,#ff3b6b,#ff8a3d); }
.g-tag--blue    { background: linear-gradient(135deg,#2bc8ff,#8b5cff); }
.g-tag--green   { background: linear-gradient(135deg,#29e08a,#2bc8ff); }
.g-tag--rainbow { background: linear-gradient(120deg,#ffd23f,#ff3b6b,#8b5cff); }
.g1 { grid-column: span 3; grid-row: span 2; }
.g2 { grid-column: span 3; }
.g3 { grid-column: span 2; }
.g4 { grid-column: span 4; }
.g5 { grid-column: span 6; grid-row: span 1; }

/* ---------- PATROCINIOS ---------- */
.patrocinios { text-align: center; }
.patrocinios .section__head { margin-inline: auto; }
.sponsor-lead { font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin: 8px 0 18px; font-weight: 700; }
.logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 34px; }
.logos--main { margin-bottom: 40px; }
.logo-chip {
  padding: 22px 40px; border-radius: 16px; min-width: 150px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: #fff; font-weight: 700; letter-spacing: .05em;
}
.logo-chip--main {
  font-family: "Fredoka", sans-serif; font-size: 1.8rem; letter-spacing: .02em;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 26px 56px; background: rgba(255,255,255,.08);
}
.logo-chip--main small { font-size: .72rem; font-weight: 500; letter-spacing: .08em; color: var(--muted); }
.logo-chip--img { background: #fff; padding: 18px 28px; display: flex; align-items: center; justify-content: center; min-width: 160px; height: 96px; }
.logo-chip--img img { max-width: 150px; max-height: 60px; width: auto; height: auto; object-fit: contain; }

/* ---------- VOLUNTARIOS ---------- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding: clamp(34px, 6vw, 64px); border-radius: 34px;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(255,95,210,.5), transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(43,200,255,.5), transparent 60%),
    linear-gradient(120deg, #6a1bb0, #c81f6a);
  box-shadow: var(--shadow);
}
.cta-band .lead { color: #fff; opacity: .92; }
.cta-band .section__title { color: #fff; }

/* ---------- FAQ ---------- */
.accordion { max-width: 820px; }
.acc {
  border-bottom: 1px solid rgba(255,255,255,.12); padding: 6px 0;
}
.acc summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 4px; position: relative;
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.2rem;
  transition: color .2s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--pink); transition: transform .3s var(--ease);
}
.acc[open] summary { color: var(--pink); }
.acc[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc p { padding: 0 4px 22px; color: #cdbfe0; max-width: 680px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink-soft); padding-top: 70px; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.07); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 50px; }
.footer__brand p { color: var(--muted); margin: 14px 0; max-width: 280px; }
.footer__mail { color: var(--blue); font-weight: 600; }
.nav__logo--footer { font-size: 1.7rem; margin: 0; }
.footer__col h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; color: #d9cfe8; transition: color .2s; }
.footer__col a:hover { color: var(--pink); }
.footer__sponsors { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer__sponsors-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; margin-bottom: 14px; }
.footer__logos { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.footer__cosmocar { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 1.4rem; letter-spacing: .02em; color: #fff; }
.footer__logo { background: #fff; border-radius: 12px; padding: 10px 16px; display: inline-flex; align-items: center; justify-content: center; height: 60px; }
.footer__logo img { max-height: 40px; max-width: 110px; width: auto; object-fit: contain; }
.footer__bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: .9rem; }

/* ---------- Reveal animations ---------- */
.reveal, .reveal-line { opacity: 0; }
.no-js .reveal, .no-js .reveal-line { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(22,10,35,.96); backdrop-filter: blur(14px); padding: 20px 28px; gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .g1, .g2, .g3, .g4, .g5 { grid-column: span 1; grid-row: span 1; }
  .g1 { grid-column: span 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__meta .dot { display: none; }
}

/* ---------- Kit wristband SVG icon ---------- */
.kit__emoji--svg { display: inline-flex; width: 1.9rem; height: 1.9rem; }
.kit__emoji--svg svg { width: 100%; height: 100%; }

/* ---------- Nav logo year + footer year ---------- */
.nav__logo-year {
  font-family: "Fredoka", sans-serif; font-weight: 700; font-size: .62em;
  margin-left: 8px; color: #fff; background: rgba(255,255,255,.14);
  padding: 1px 8px; border-radius: 8px; align-self: center;
}

/* ---------- Animações ---------- */
.animacoes { background: linear-gradient(180deg, transparent, rgba(43,200,255,.05), transparent); }
.anim__grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 14px; }
.anim__item {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.anim__item:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: rgba(43,200,255,.4); }
.anim__emoji { font-size: 2rem; line-height: 1; }
.anim__item strong { display: block; font-size: 1.05rem; }
.anim__item span { color: var(--muted); font-size: .88rem; }

/* ---------- Video feature (galeria) ---------- */
.video-feature {
  position: relative; width: min(900px, 100%); margin: 0 auto; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.1);
}
.video-feature iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Photo grid (galeria) ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; gap: 16px; margin-top: 28px; }
.photo-grid__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.photo-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.photo-grid__item:hover img { transform: scale(1.06); }
.pg1 { grid-column: span 3; grid-row: span 2; }
.pg2 { grid-column: span 3; }
.pg3 { grid-column: span 2; }
.pg4 { grid-column: span 4; }
.pg5 { grid-column: span 6; }
@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .pg1, .pg2, .pg3, .pg4, .pg5 { grid-column: span 1; grid-row: span 1; }
  .pg1 { grid-column: span 2; grid-row: span 2; }
}

/* ---------- Real sponsor logos ---------- */
.logo-chip--cosmocar { background: #2a2a2e; padding: 16px 36px; border-color: rgba(255,255,255,.12); }
.logo-chip--cosmocar img { max-height: 84px; max-width: 280px; width: auto; display: block; }
.logo-chip--img.logo-chip--dark { background: #241334; }
.footer__logo--cosmocar { background: #2a2a2e; padding: 8px 14px; }
.footer__logo--cosmocar img { max-height: 46px; max-width: 160px; }
.footer__logo--dark { background: #241334; }

/* ---------- Form modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(10,2,20,.72); backdrop-filter: blur(6px); }
.modal__dialog {
  position: relative; z-index: 1; width: min(520px, 92vw); margin: 8vh auto 0; max-height: 84vh; overflow: auto;
  background: linear-gradient(160deg,#26143a,#1a0c28); border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px; padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow);
  animation: modalIn .35s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; opacity: .7; }
.modal__close:hover { opacity: 1; }
.modal__title { font-size: clamp(1.5rem, 3vw, 2rem); margin: 6px 0; }
.modal__sub { color: var(--muted); margin-bottom: 22px; }
.form { display: flex; flex-direction: column; gap: 14px; }
.form__field {
  width: 100%; padding: 14px 16px; border-radius: 12px; font-family: inherit; font-size: 1rem; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  transition: border-color .2s, background .2s;
}
.form__field::placeholder { color: #9b8fae; }
.form__field:focus { outline: none; border-color: var(--pink); background: rgba(255,255,255,.09); }
textarea.form__field { resize: vertical; min-height: 110px; }
.form__submit { width: 100%; justify-content: center; margin-top: 4px; }
.form__status { font-size: .95rem; margin-top: 6px; min-height: 1.2em; text-align: center; }
.form__status.ok { color: var(--green); }
.form__status.err { color: var(--red); }
.footer__contact-btn { margin-top: 16px; }
body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-line { opacity: 1 !important; transform: none !important; }
}
