/* ==========================================================================
   fudidate — page sections
   ========================================================================== */

/* -------------------------------------------------------------------- nav */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* opaque enough to stand on its own; the blur is an enhancement, not the
   thing that makes the text readable */
.nav.is-stuck {
  background: rgba(9, 5, 15, 0.94);
  border-bottom-color: var(--line-1);
}

@supports (backdrop-filter: blur(4px)) {
  .nav.is-stuck {
    background: rgba(9, 5, 15, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
  }
}

.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 74px;
}

/* On phones the links live in a sheet under the header; from 900px up they
   flatten back into a normal inline row. */
.nav__links {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.15rem;
  padding: 0.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  /* deliberately opaque: a translucent sheet lets the hero copy read through it */
  background: var(--ink-850);
  box-shadow: var(--sh-lift);
  font-weight: 500;
  color: var(--text-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.24s;
}

.nav.is-open .nav__links {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav__links a {
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  font-size: 1rem;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover { color: #fff; background: var(--surface-2); }

.nav__cta { margin-left: auto; }

/* two bars that cross into a close icon */
.nav__toggle {
  display: grid;
  align-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-1);
  background: var(--surface-1);
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}

.nav.is-open .nav__toggle span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav__inner { gap: 1.5rem; }
  .nav__toggle { display: none; }

  .nav__links {
    position: static;
    display: flex;
    gap: 2rem;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-size: 0.92rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__links a { padding: 0.35rem 0; border-radius: 0; font-size: 0.92rem; }
  .nav__links a:hover { background: none; }
  .nav__links + .nav__cta { margin-left: 0; }
}

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  padding-top: clamp(5.5rem, 4.5rem + 2.5vw, 7.5rem);
  padding-bottom: clamp(2.5rem, 2rem + 3vw, 4rem);
  overflow: hidden;
}

.hero__mesh .mesh__blob:nth-child(1) {
  width: 46vw; height: 46vw;
  min-width: 380px; min-height: 380px;
  left: -12vw; bottom: -14vw;
  background: radial-gradient(circle, #ff083e, transparent 68%);
  animation: drift-a 22s ease-in-out infinite alternate;
}

.hero__mesh .mesh__blob:nth-child(2) {
  width: 50vw; height: 50vw;
  min-width: 420px; min-height: 420px;
  right: -14vw; top: -18vw;
  background: radial-gradient(circle, #8c72c7, transparent 66%);
  opacity: 0.45;
  animation: drift-b 26s ease-in-out infinite alternate;
}

.hero__mesh .mesh__blob:nth-child(3) {
  width: 32vw; height: 32vw;
  min-width: 300px; min-height: 300px;
  left: 46%; top: 24%;
  background: radial-gradient(circle, #a01f7a, transparent 70%);
  opacity: 0.3;
  animation: drift-c 30s ease-in-out infinite alternate;
}

@keyframes drift-a {
  to { transform: translate3d(8%, -8%, 0) scale(1.12); }
}
@keyframes drift-b {
  to { transform: translate3d(-10%, 10%, 0) scale(1.08); }
}
@keyframes drift-c {
  to { transform: translate3d(-14%, -10%, 0) scale(1.16); }
}

/* the copy leads: aligned to the top of the row so the headline never gets
   pushed down by the height of the device next to it */
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 1rem + 6vw, 4rem);
  align-items: start;
}

@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); }
}

.hero__h1 {
  font-size: var(--step-5);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero__h1 em {
  font-style: normal;
  display: block;
}

.hero__lede { max-width: 34ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.84rem;
  color: var(--text-3);
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__trust svg { width: 14px; height: 14px; color: var(--coral-400); }

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__art::before {
  content: "";
  position: absolute;
  inset: -8% -18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 45%, rgba(255, 8, 62, 0.3), transparent 68%);
  filter: blur(28px);
}

/* width includes the export's 50px breathing room on each side, so the phone
   itself reads about 80% of these numbers */
.hero__screen {
  position: relative;
  z-index: 2;
  width: min(100%, 450px);
}

/* side by side the device is also capped by window height, so the whole hero
   keeps fitting above the fold on short windows */
@media (min-width: 1000px) {
  .hero__screen { width: min(100%, 470px, 44vh); }
}

/* ------------------------------------------------------------------ stats */

.stats {
  display: grid;
  gap: 1px;
  margin-top: clamp(3rem, 2rem + 3vw, 4.5rem);
  border: 1px solid var(--line-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--line-1);
}

@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
}

.stats__item {
  padding: 1.6rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)), var(--ink-900);
}

.stats__n {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(160deg, #fff 20%, rgba(255, 91, 105, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__t {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stats__d {
  margin-top: 0.25rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-3);
}

/* ---------------------------------------------------------------- compare */

.compare {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .compare { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.compare__card { padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); }

.compare__card--old { opacity: 0.92; }

.compare__card--new {
  border-color: rgba(255, 8, 62, 0.32);
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(255, 8, 62, 0.16), transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--ink-850);
}

.compare__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-1);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.compare__card--new .compare__label {
  border-color: rgba(255, 8, 62, 0.4);
  color: var(--coral-300);
  background: rgba(255, 8, 62, 0.1);
}

.flow { display: grid; gap: 0.5rem; }

.flow__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
  font-weight: 500;
}

.flow__item i {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  flex: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  font-style: normal;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-2);
}

.flow--new .flow__item {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.flow--new .flow__item i {
  background: var(--grad-coral);
  color: #fff;
}

.flow__item--muted {
  border-style: dashed;
  color: var(--text-4);
  font-style: italic;
  background: transparent;
}

.flow__item--muted i {
  background: transparent;
  border: 1px dashed var(--line-2);
  color: var(--text-4);
}

.flow__item--win {
  border-color: rgba(255, 8, 62, 0.45) !important;
  background: rgba(255, 8, 62, 0.14) !important;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.compare__note {
  margin-top: 1.35rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-3);
}

/* ------------------------------------------------------------------- ways */

.ways {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .ways { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.ways__col { padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); }

.ways__col--go {
  border-color: rgba(140, 114, 199, 0.28);
  background:
    radial-gradient(85% 65% at 100% 0%, rgba(140, 114, 199, 0.16), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--ink-850);
}

.ways__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.35rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-1);
}

.ways__ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 14px;
  background: var(--grad-coral);
  box-shadow: var(--glow-coral);
  color: #fff;
}

.ways__ico--violet {
  background: var(--grad-violet);
  box-shadow: var(--glow-violet);
}

.ways__ico svg { width: 20px; height: 20px; }

.ways__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ways__sub {
  margin-top: 0.15rem;
  font-size: 0.88rem;
  color: var(--text-3);
}

.ways__steps {
  counter-reset: way;
  display: grid;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ways__steps li {
  counter-increment: way;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.35rem 1rem;
}

.ways__steps li::before {
  content: counter(way);
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-2);
}

.ways__steps b {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  align-self: center;
}

.ways__steps span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-3);
}

.steps__note {
  display: flex;
  gap: 0.7rem;
  max-width: 62ch;
  margin: 2rem auto 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-4);
}

.steps__note svg {
  width: 16px; height: 16px;
  flex: none;
  margin-top: 0.25rem;
  color: var(--violet-400);
}

/* ------------------------------------------------------------------ bento */

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 660px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__cell--wide { grid-column: span 2; }
}

.bento__cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  min-height: 232px;
}

.bento__ico {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 13px;
  border: 1px solid var(--line-1);
  background: linear-gradient(150deg, rgba(255, 8, 62, 0.22), rgba(140, 114, 199, 0.16));
  color: #fff;
}

.bento__ico svg { width: 19px; height: 19px; }

.bento__t {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.bento__d {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-3);
}

.bento__art { margin-top: auto; }

.mini-rows { display: grid; gap: 0.4rem; }

.mini-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  font-weight: 500;
}

.mini-row__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex: none;
  background: var(--coral-500);
}

.mini-row__dot--v { background: var(--violet-500); }
.mini-row__dot--o { background: rgba(255, 255, 255, 0.25); }
.mini-row__meta { margin-left: auto; color: var(--text-4); font-size: 0.74rem; }

.bento__map {
  position: relative;
  height: 120px;
  margin: auto -1.5rem -1.5rem;
  border-top: 1px solid var(--line-1);
  overflow: hidden;
}

.bento__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.pay-toggle { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.pay-toggle__opt {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}

.pay-toggle__opt.is-on {
  border-color: transparent;
  background: var(--grad-coral);
  color: #fff;
  box-shadow: var(--glow-coral);
}

.pay-toggle__opt svg { width: 13px; height: 13px; }

.verify-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(140, 114, 199, 0.35);
  background: rgba(140, 114, 199, 0.12);
}

.verify-badge svg { width: 18px; height: 18px; color: var(--violet-400); flex: none; }
.verify-badge b { font-size: 0.85rem; }
.verify-badge small { display: block; font-size: 0.74rem; color: var(--text-3); }

.rep-bar {
  height: 8px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rep-bar i {
  display: block;
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--grad-coral);
}

.rep-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-4);
}

/* ---------------------------------------------------------------- filters */

.filters__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
  justify-items: center;
}

/* the second track is sized explicitly: an `auto` track plus a percentage
   width on the figure is circular, and the image collapses to zero */
@media (min-width: 900px) {
  .filters__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 440px); justify-items: start; }
}

.filters__screen {
  position: relative;
  width: 100%;
  max-width: 440px;
}

/* the sheet's own ground is nearly the page colour, so a violet halo gives the
   device a silhouette */
.filters__screen::before {
  content: "";
  position: absolute;
  inset: 6% 0 2%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(52% 46% at 50% 50%, rgba(140, 114, 199, 0.26), transparent 72%);
  filter: blur(34px);
}


/* ---------------------------------------------------------------- pricing */

.plans {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 820px) {
  .plans { grid-template-columns: 1fr 1fr; }
}

.plan { padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); }

.plan--pro {
  border-color: rgba(255, 8, 62, 0.35);
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(255, 8, 62, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--ink-850);
}

.plan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.plan__price {
  font-size: 0.88rem;
  color: var(--text-3);
}

.plan__badge {
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--grad-coral);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan__list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan__list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-2);
}

.plan__list svg { width: 16px; height: 16px; margin-top: 0.24rem; color: var(--coral-400); }
.plan--free .plan__list svg { color: var(--text-4); }

.plan__foot {
  margin-top: 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-1);
  font-size: 0.82rem;
  color: var(--text-4);
}

/* -------------------------------------------------------------------- faq */

.faq {
  max-width: 800px;
  margin-inline: auto;
  border-top: 1px solid var(--line-1);
}

.faq__item {
  border-bottom: 1px solid var(--line-1);
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--coral-300); }

.faq__q i {
  position: relative;
  margin-left: auto;
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
}

.faq__q i::before,
.faq__q i::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 1.6px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s;
}

.faq__q i::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item[open] .faq__q i { background: var(--grad-coral); border-color: transparent; color: #fff; }
.faq__item[open] .faq__q i::after { opacity: 0; }

.faq__a {
  padding: 0 3rem 1.5rem 0.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-3);
  max-width: 68ch;
}

/* ---------------------------------------------------------------- cta end */

.cta {
  position: relative;
  padding: clamp(2.5rem, 1.5rem + 5vw, 5rem) clamp(1.5rem, 1rem + 4vw, 4.5rem);
  border-radius: var(--r-3xl);
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(70% 80% at 12% 100%, rgba(255, 8, 62, 0.45), transparent 62%),
    radial-gradient(70% 90% at 92% 0%, rgba(140, 114, 199, 0.45), transparent 60%),
    radial-gradient(60% 60% at 50% 120%, rgba(192, 38, 211, 0.28), transparent 70%),
    linear-gradient(160deg, #17102a, #0b0713 70%);
  box-shadow: var(--sh-lift);
}

.cta__h {
  font-size: var(--step-4);
  letter-spacing: -0.045em;
}

.cta__p {
  max-width: 46ch;
  margin: 1.1rem auto 0;
  font-size: var(--step-1);
  color: var(--text-2);
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 640px;
  margin: 2.25rem auto 0;
}

.form__field {
  position: relative;
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.1rem;
  height: 56px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: rgba(8, 5, 13, 0.55);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, background 0.2s;
}

.form__field:focus-within { border-color: var(--coral-400); background: rgba(8, 5, 13, 0.75); }
.form__field svg { width: 16px; height: 16px; color: var(--text-4); flex: none; }

.form__field input,
.form__field select {
  width: 100%;
  height: 100%;
  border: 0;
  background: none;
  font-size: 0.95rem;
  outline: none;
  appearance: none;
}

.form__field input::placeholder { color: var(--text-4); }
.form__field select option { background: var(--ink-800); color: #fff; }

.form__field--city { flex: 0 1 168px; }

.form .btn { height: 56px; flex: 0 0 auto; }

.form__note {
  margin: 1rem auto 0;
  font-size: 0.8rem;
  color: var(--text-4);
}

.form__ok {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  max-width: 560px;
  margin: 2.25rem auto 0;
  padding: 1.15rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 8, 62, 0.4);
  background: rgba(255, 8, 62, 0.12);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.form__ok svg { width: 18px; height: 18px; color: var(--coral-400); }
.is-sent .form { display: none; }
.is-sent .form__ok { display: flex; }

.cta__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
}

.cta__cities span {
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--text-3);
}

.cta__cities span:first-child {
  border-color: rgba(255, 8, 62, 0.45);
  background: rgba(255, 8, 62, 0.14);
  color: #fff;
  font-weight: 600;
}

/* ----------------------------------------------------------------- footer */

.footer {
  padding-top: clamp(3rem, 2rem + 3vw, 4.5rem);
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--line-1);
  margin-top: clamp(4rem, 3rem + 4vw, 7rem);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 760px) {
  .footer__grid { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 2rem; }
}

.footer__tag {
  margin-top: 1rem;
  max-width: 30ch;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-3);
}

.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-2);
}

.footer__col a { transition: color 0.2s; }
.footer__col a:hover { color: var(--coral-300); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-1);
  font-size: 0.8rem;
  color: var(--text-4);
}

.footer__bar a:hover { color: var(--text-2); }
.footer__bar .spacer { margin-left: auto; }

.store-badges { display: flex; gap: 0.5rem; margin-top: 1.5rem; }

.store-badge {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
}

.store-badge svg { width: 15px; height: 15px; }

.form__field[data-invalid] {
  border-color: var(--coral-500);
  background: rgba(255, 8, 62, 0.1);
}

.form__field[data-invalid] svg { color: var(--coral-400); }

.form__error {
  max-width: 44ch;
  margin: 0.9rem auto 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--coral-300);
}

.form .btn[disabled] {
  opacity: 0.65;
  cursor: progress;
  transform: none;
}

/* ------------------------------------------------------------ small screens */

@media (max-width: 899px) {
  /* iOS zooms the whole page when a focused field is under 16px */
  .form__field input,
  .form__field select { font-size: 1rem; }

  /* the wordmark is a link too — give it a thumb-sized hit area */
  .nav .logo { padding-block: 0.7rem; }

  /* footer links are the smallest targets on the page — give them real height */
  .footer__col ul { gap: 0.1rem; }

  .footer__col a {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.95rem;
  }

  .footer__grid { gap: 2rem; }
  .footer__bar { gap: 0.5rem 1rem; }
  .footer__bar .spacer { display: none; }

  .store-badges { flex-wrap: wrap; }
}

/* On phones the app screens are dropped altogether: a phone drawn inside a phone
   adds a screen and a half of scrolling and nothing to the argument. */
@media (max-width: 720px) {
  .hero__art,
  .filters__screen { display: none; }

  .filters__grid { justify-items: stretch; }
  .hero { padding-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
}

@media (min-width: 521px) and (max-width: 720px) {
  .hero__screen { width: min(100%, 330px); }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }

  .cta { border-radius: var(--r-2xl); }
  .stats__item { padding: 1.35rem 1.25rem; }
}
