/* Contemporary dark — bold type, fluid layout, glass depth, accessible focus */
:root {
  --bg-deep: #050508;
  --bg-raised: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --violet: #a78bfa;
  --cyan: #22d3ee;
  --pink: #f472b6;
  --accent-mix: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 55%, var(--pink) 100%);
  --glow-violet: rgba(167, 139, 250, 0.45);
  --glow-cyan: rgba(34, 211, 238, 0.35);
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-full: 999px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 72rem;
  --header-h: 4.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --code-bg: #08080c;
  --code-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Immersive ambient layer (CSS only, GPU-friendly) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 100% 80% at 0% -30%, rgba(124, 58, 237, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(34, 211, 238, 0.18), transparent 50%),
    radial-gradient(ellipse 55% 45% at 80% 100%, rgba(244, 114, 182, 0.14), transparent 50%),
    var(--bg-deep);
  pointer-events: none;
}

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #67e8f9;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--text);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--cyan);
}

img {
  max-width: 100%;
  height: auto;
}

.text-gradient {
  background: var(--accent-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header {
    background: rgba(12, 12, 18, 0.96);
  }
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

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

.brand img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 0 24px var(--glow-violet);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}

.nav-main a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.nav-main a:hover {
  color: var(--text);
  background: var(--bg-glass);
}

.nav-main a[aria-current="page"] {
  color: var(--text);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(34, 211, 238, 0.12));
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.35);
}

.nav-main .nav-cta {
  margin-left: 0.25rem;
  background: var(--accent-mix);
  color: #0a0a0f !important;
  box-shadow: 0 4px 24px var(--glow-cyan);
}

.nav-main .nav-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 32px var(--glow-violet);
}

main {
  flex: 1;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.5rem 4rem;
}

/* Home hero — fluid split */
.hero-home {
  display: grid;
  gap: 2.5rem 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (min-width: 900px) {
  .hero-home {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-mix);
  box-shadow: 0 0 12px var(--glow-cyan);
}

.hero h1,
.hero-home h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--text);
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 38ch;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  padding: 1.75rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 64px -20px rgba(0, 0, 0, 0.55);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 210deg at 50% 50%, rgba(167, 139, 250, 0.15), transparent, rgba(34, 211, 238, 0.12), transparent, rgba(244, 114, 182, 0.1), transparent);
  animation: spin-slow 28s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual::before {
    animation: none;
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.hero-visual-inner {
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: grid;
  gap: 1rem;
}

.hero-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.hero-stat-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  background: var(--accent-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.hero:not(.hero-home) h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

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

.prose {
  max-width: 52rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

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

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

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), filter 0.2s;
}

.btn:focus-visible {
  outline-offset: 4px;
}

.btn-primary {
  background: var(--accent-mix);
  color: #0a0a0f;
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--glow-violet);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(167, 139, 250, 0.5);
  transform: translateY(-2px);
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-top: 2rem;
}

.card {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.65rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(34, 211, 238, 0.06));
  transition: opacity 0.35s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5), 0 0 40px -10px var(--glow-violet);
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 0.5rem;
}

.page-sub {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 54ch;
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-top: 1.5rem;
}

.price-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.75rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.2), 0 28px 56px -16px rgba(124, 58, 237, 0.25);
}

.price-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.15rem;
  line-height: 1.2;
  background: var(--accent-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card .amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.price-fx {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.price-card ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-card li {
  padding: 0.4rem 0;
  border-top: 1px solid var(--border);
}

.price-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-footnote {
  margin-top: 2.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.65;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-aside {
  padding: 1.5rem 0;
}

.contact-aside h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.contact-aside p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.65;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-links li {
  margin-bottom: 0.65rem;
}

.contact-links a {
  font-weight: 600;
}

.contact-form-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  padding: 2rem 1.75rem;
  box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.5);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field label,
.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #71717a;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--border-strong);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.25);
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}

.form-error-alert {
  color: #f87171;
  margin-top: 0.5rem;
}

.contact-serve-banner {
  max-width: 42rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: #fde68a;
  margin-bottom: 0.25rem;
}

.contact-noscript-hint {
  margin-top: 1rem;
}

/* Honeypot: off-screen, ignore with assistive tech */
.contact-honeypot-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-actions .btn[type="submit"] {
  border: none;
}

/* Docs */
.docs-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2.25rem;
  align-items: start;
}

@media (max-width: 800px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }
}

.docs-nav {
  position: sticky;
  top: calc(var(--header-h) + 0.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  padding: 1.15rem;
  font-size: 0.92rem;
}

.docs-nav strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  margin-bottom: 0.65rem;
}

.docs-nav a {
  display: block;
  padding: 0.4rem 0.6rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.docs-nav a:hover {
  background: rgba(167, 139, 250, 0.12);
  color: var(--text);
}

.doc-section {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  margin-bottom: 2.75rem;
}

.doc-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
}

.endpoint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 1rem 0 0.5rem;
}

.method {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  text-transform: uppercase;
}

.get {
  background: rgba(34, 211, 238, 0.15);
  color: #67e8f9;
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.post {
  background: rgba(167, 139, 250, 0.15);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.28);
}

.path {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  color: var(--text);
  border: 1px solid var(--border);
}

pre,
.code-block {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.55;
  background: var(--code-bg);
  color: #d4d4d8;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 0.75rem 0 0;
  border: 1px solid var(--code-border);
}

.param-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-top: 0.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.param-table th,
.param-table td {
  text-align: left;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
}

.param-table tr:last-child td {
  border-bottom: 0;
}

.param-table th {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
}

.param-table code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(167, 139, 250, 0.12);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: #e4e4e7;
}

.doc-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--cyan);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.inline-code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(167, 139, 250, 0.12);
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
  color: #e4e4e7;
  border: 1px solid rgba(167, 139, 250, 0.2);
}

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

  .btn-primary:hover,
  .btn-secondary:hover,
  .card:hover,
  .price-card:hover {
    transform: none;
  }

  .card,
  .price-card,
  .btn {
    transition: none;
  }
}

/* Contact feedback dialog */
.contact-dialog {
  max-width: min(26rem, calc(100vw - 2rem));
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: #0c0c10;
  color: var(--text);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.contact-dialog::backdrop {
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(6px);
}

.contact-dialog-inner {
  padding: 1.5rem 1.5rem 1.25rem;
}

.contact-dialog h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-dialog p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-dialog-actions {
  margin-top: 1.35rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}
