/* ==========================================================
   PADELIST — Support site
   Dark + neon-pink aesthetic
   ========================================================== */

:root {
  --bg: #000000;
  --bg-elev: #0d0d0f;
  --bg-card: #131316;
  --bg-card-hover: #1a1a1f;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-muted: #b8b8bd;
  --text-dim: #8a8a92;
  --pink: #ff2d7c;
  --pink-soft: #ff4f93;
  --pink-glow: rgba(255, 45, 124, 0.55);
  --green: #29c46f;
  --red: #ef4452;
  --orange: #ff8a3c;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  --container: 1180px;

  --font-display: "Sora", "Inter", system-ui, -apple-system, "Segoe UI",
    Roboto, sans-serif;
  --font-body: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI",
    Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
  scroll-behavior: smooth;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--pink-soft);
}

img {
  max-width: 100%;
  display: block;
}

/* Headings ------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  margin: 0 0 1em;
}

.text-pink {
  color: var(--pink);
}

.muted {
  color: var(--text-muted);
}

.dim {
  color: var(--text-dim);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 6px 12px;
  border: 1px solid rgba(255, 45, 124, 0.35);
  border-radius: 999px;
  background: rgba(255, 45, 124, 0.08);
}

/* Layout --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--tight {
  padding: 56px 0;
}

/* Header --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 12px var(--pink-glow));
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.brand__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  display: block;
  margin-top: 1px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  position: relative;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink-glow);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--border);
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .nav a.is-active::after {
    display: none;
  }
}

/* Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 28px -8px var(--pink-glow), 0 0 0 1px rgba(255, 45, 124, 0.4) inset;
}

.btn--primary:hover {
  background: var(--pink-soft);
  color: #fff;
  box-shadow: 0 10px 36px -6px var(--pink-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
}

/* Hero ----------------------------------------------------- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__title {
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 0.95;
  margin-bottom: 16px;
}

.hero__title-pink {
  color: var(--pink);
  display: block;
  text-shadow: 0 0 30px rgba(255, 45, 124, 0.4);
}

.hero__lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 22px 0 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.hero__meta strong {
  color: var(--text);
  font-weight: 700;
}

/* Decorative pink glow behind hero */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 620px;
  height: 620px;
  right: -200px;
  top: -120px;
  background: radial-gradient(closest-side, rgba(255, 45, 124, 0.25), transparent 75%);
  filter: blur(20px);
}

.hero::after {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -120px;
  background: radial-gradient(closest-side, rgba(255, 45, 124, 0.18), transparent 75%);
  filter: blur(20px);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

/* Phone mockup -------------------------------------------- */
.phone {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9/19;
  margin: 0 auto;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1a1d 0%, #0a0a0c 100%);
  box-shadow:
    0 0 0 2px #2a2a2d,
    0 0 0 12px #0a0a0c,
    0 50px 120px -30px rgba(255, 45, 124, 0.45),
    0 30px 60px -20px rgba(0, 0, 0, 0.9);
  padding: 14px;
  transform: rotate(2deg);
}

.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #0a0a0c;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

.phone__top {
  padding: 38px 18px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone__top-brand {
  text-align: center;
  flex: 1;
}

.phone__top-brand .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.phone__top-brand .t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.42rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  margin-top: 2px;
}

.phone__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--pink);
}

.phone__hero-img {
  margin: 0 16px;
  height: 130px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 45, 124, 0.25), transparent 60%),
    linear-gradient(180deg, #1a1a1d, #0e0e10);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone__hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 50% 60%, rgba(255, 45, 124, 0.2), transparent 70%);
}

.phone__tiles {
  margin: 14px 14px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone__tile {
  background: #131316;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.phone__tile-icon {
  width: 22px;
  height: 22px;
  color: var(--pink);
  margin-bottom: 6px;
}

.phone__tile-icon--orange {
  color: var(--orange);
}

.phone__tile-icon--green {
  color: var(--green);
}

.phone__tile-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.78rem;
  margin-bottom: 2px;
}

.phone__tile-sub {
  font-size: 0.62rem;
  color: var(--text-dim);
  line-height: 1.35;
}

.phone__bottom {
  margin-top: auto;
  padding: 10px 14px 12px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
}

.phone__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.55rem;
  color: var(--text-dim);
  text-transform: capitalize;
}

.phone__nav-item.is-active {
  color: var(--pink);
}

.phone__nav-item svg {
  width: 16px;
  height: 16px;
}

.phone__nav-fab {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--pink);
  display: grid;
  place-items: center;
  color: #fff;
  margin-top: -22px;
  box-shadow: 0 6px 20px var(--pink-glow);
}

.phone__nav-fab svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 880px) {
  .hero {
    padding: 80px 0 60px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .phone {
    transform: none;
    max-width: 300px;
  }
}

/* Features grid ------------------------------------------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  text-transform: uppercase;
}

.section-head h2 .text-pink {
  display: block;
}

.section-head p {
  font-size: 1.08rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 880px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 45, 124, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.14);
}

.feature:hover::before {
  opacity: 1;
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 45, 124, 0.12);
  color: var(--pink);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  margin-bottom: 6px;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
}

/* Stats / Why ---------------------------------------------- */
.stat-strip {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 700px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Support page -------------------------------------------- */
.page-hero {
  padding: 100px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -180px;
  top: -200px;
  background: radial-gradient(closest-side, rgba(255, 45, 124, 0.18), transparent 75%);
  filter: blur(10px);
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 780px;
}

.page-hero .lede {
  max-width: 640px;
  font-size: 1.1rem;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  background: rgba(255, 45, 124, 0.12);
  color: var(--pink);
  display: grid;
  place-items: center;
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  margin: 0 0 4px;
}

.contact-card p {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.contact-card a {
  font-weight: 700;
}

.contact-card .hint {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Quick info row ------------------------------------------ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

@media (max-width: 720px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.info-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 8px;
}

.info-card .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.info-card .sub {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ ----------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq[open] {
  border-color: rgba(255, 45, 124, 0.4);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d7c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.faq[open] summary::after {
  transform: rotate(180deg);
}

.faq__body {
  padding: 0 24px 22px;
  color: var(--text-muted);
}

.faq__body p {
  margin: 0 0 0.6em;
}

.faq__body p:last-child {
  margin-bottom: 0;
}

.faq-cat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 36px 0 12px;
}

.faq-cat:first-of-type {
  margin-top: 12px;
}

/* Legal text ---------------------------------------------- */
.prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
}

.prose h2 {
  color: var(--text);
  font-size: 1.6rem;
  margin: 48px 0 16px;
  text-transform: none;
}

.prose h3 {
  color: var(--text);
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.prose p,
.prose ul {
  margin: 0 0 1em;
}

.prose ul {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 6px;
}

.prose strong {
  color: var(--text);
}

.prose .meta {
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* CTA card ------------------------------------------------- */
.cta-card {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255, 45, 124, 0.22), transparent 55%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 32px;
}

@media (max-width: 720px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

.cta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cta-card p {
  margin: 0;
}

.cta-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer --------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

@media (max-width: 760px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  margin: 0 0 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--text);
}

.site-footer__about p {
  font-size: 0.95rem;
  margin: 14px 0 0;
  max-width: 320px;
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Utilities ----------------------------------------------- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

/* Forms --------------------------------------------------- */
.form {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  max-width: 640px;
}

.form__row {
  display: grid;
  gap: 8px;
}

.form__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form__input,
.form__textarea,
.form__select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 3px rgba(255, 45, 124, 0.15);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d7c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}

.form__hint {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.form__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.form__status {
  font-size: 0.92rem;
  font-weight: 600;
}

.form__status.is-ok {
  color: var(--green);
}

.form__status.is-err {
  color: var(--red);
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Lang toggle --------------------------------------------- */
.lang {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.lang button {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang button.is-active {
  background: var(--pink);
  color: #fff;
}

@media (max-width: 820px) {
  .lang {
    margin-left: auto;
    margin-right: 8px;
  }
}

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--pink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
}

.skip:focus {
  left: 16px;
}
