:root {
  --bg: #000000;
  --card: #141414;
  --border: #2a2a2a;
  --primary: #2f4f4f;
  --primary-dark: #1f3a3a;
  --primary-light: #8faeae;
  --primary-soft: #1e3333;
  --primary-border: #5c8484;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --header-h: 72px;
  --max: 1120px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(47, 79, 79, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(92, 132, 132, 0.2), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(30, 51, 51, 0.35), transparent 60%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(42, 42, 42, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 42, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2rem);
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.logo img {
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--primary-border);
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-desktop a:hover {
  color: var(--text);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem clamp(1rem, 4vw, 2rem) 1.5rem;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 8px 24px rgba(47, 79, 79, 0.35);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 32px rgba(47, 79, 79, 0.45);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

.btn-ghost {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--border);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--primary-soft);
  color: var(--text);
  border-color: var(--primary-border);
  box-shadow: none;
}

/* Hero */
main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--header-h) + 3rem) clamp(1rem, 4vw, 2rem) 4rem;
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: calc(var(--header-h) + 4rem);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  background: var(--primary-soft);
  border: 1px solid rgba(92, 132, 132, 0.35);
  border-radius: 999px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 0 rgba(143, 174, 174, 0.6);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(143, 174, 174, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(143, 174, 174, 0);
  }
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary-light);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 0 3rem;
}

.phone {
  width: min(300px, 88vw);
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 36px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(92, 132, 132, 0.15),
    0 40px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(47, 79, 79, 0.15);
}

.phone-notch {
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: var(--bg);
  border-radius: 26px;
  padding: 1rem;
  min-height: 420px;
  border: 1px solid var(--border);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.phone-title {
  font-weight: 800;
  font-size: 1.1rem;
}

.phone-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: var(--primary-soft);
  color: var(--primary-light);
  border: 1px solid rgba(92, 132, 132, 0.4);
  border-radius: 999px;
}

.phone-chips {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.chip {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
}

.chip.active {
  background: var(--primary);
  border-color: var(--primary-border);
  color: #fff;
}

.feed-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.85rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.feed-card-top {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.feed-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--cat) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat) 35%, transparent);
}

.feed-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
}

.feed-meta {
  font-size: 0.65rem;
  color: var(--muted);
}

.feed-media {
  height: 72px;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-soft), var(--card));
  border: 1px solid var(--border);
}

.feed-desc {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.45;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  animation: float 5s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-size: 0.8rem;
}

.float-card span {
  font-size: 0.7rem;
  color: var(--muted);
}

.float-icon {
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: 10px;
  border: 1px solid var(--primary-border);
}

.float-notif {
  top: 8%;
  right: -4%;
  animation-delay: 0s;
}

.float-points {
  bottom: 12%;
  left: -6%;
  animation-delay: -2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 959px) {
  .float-notif {
    right: 0;
  }
  .float-points {
    left: 0;
  }
}

/* Sections */
.section {
  padding: 5rem clamp(1rem, 4vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
}

.section-alt {
  max-width: none;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, transparent, rgba(20, 20, 20, 0.6) 40%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: 3rem;
}

/* Features */
.features-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

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

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

.feature-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(92, 132, 132, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--primary-soft);
  border: 1px solid rgba(92, 132, 132, 0.35);
  border-radius: var(--radius-md);
  color: var(--primary-light);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Categories */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cat-pill {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 40%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-pill:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--c) 25%, transparent);
}

.cat-muted {
  opacity: 0.85;
}

/* Steps */
.steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.step {
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-border));
}

.step-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-soft);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA */
.cta-band {
  max-width: none;
  padding-bottom: 6rem;
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background:
    linear-gradient(135deg, var(--primary-soft) 0%, var(--card) 50%, var(--bg) 100%);
  border: 1px solid var(--primary-border);
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 24px 64px rgba(47, 79, 79, 0.2);
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.cta-copy p {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.store-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
  padding: 0.85rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.store-btn:hover {
  border-color: var(--primary-border);
  color: var(--text);
  transform: translateY(-2px);
}

.store-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.store-btn strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-note {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 3rem clamp(1rem, 4vw, 2rem) 2rem;
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .tagline {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer li a {
  font-size: 0.9rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-body .bg-grid {
  display: none;
}

.legal-header {
  max-width: none;
}

.legal-main {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2.5rem) clamp(1rem, 4vw, 2rem) 4rem;
}

.legal-doc {
  max-width: 720px;
  margin: 0 auto;
}

.legal-doc-head {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-doc-head h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-doc h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2.25rem 0 0.85rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.legal-doc h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.65rem;
  color: var(--primary-light);
}

.legal-doc p,
.legal-doc li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.legal-doc p {
  margin-bottom: 1rem;
}

.legal-doc p strong,
.legal-doc li strong {
  color: var(--text);
  font-weight: 600;
}

.legal-doc ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}

.legal-doc li {
  margin-bottom: 0.45rem;
}

.legal-doc a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: var(--text);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.legal-table th,
.legal-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.5;
  vertical-align: top;
}

.legal-table th {
  background: var(--card);
  color: var(--text);
  font-weight: 600;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-nav-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-nav-bottom a {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.legal-footer {
  max-width: none;
  text-align: center;
  padding-top: 2rem;
}

.legal-footer .copyright a {
  color: var(--muted);
}

.legal-footer .copyright a:hover {
  color: var(--primary-light);
}

/* Help & contact form */
.help-main .help-faq {
  margin-bottom: 3rem;
}

.help-contact h2 {
  margin-top: 0;
}

.contact-card {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
}

.contact-card-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-card-email {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-light);
  text-decoration: none;
}

.contact-card-email:hover {
  color: var(--text);
}

.contact-card-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1.15rem;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b7280;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-border);
  box-shadow: 0 0 0 3px rgba(47, 79, 79, 0.35);
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.55;
}

.contact-submit {
  justify-self: start;
  margin-top: 0.25rem;
  min-width: 12rem;
}

.contact-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-message {
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
}

.form-message.hidden {
  display: none;
}

.form-message-error {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.form-message-success {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
}
