/* Remote Access Technologies — lean static site */
:root {
  --bg: #0a0a0b;
  --card: #101013;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e6e8eb;
  --muted: #8a8f98;
  --faint: #767b85;
  --accent: #7d9bd1;
  --accent-dim: rgba(125, 155, 209, 0.1);
  --mono: ui-monospace, "SF Mono", "Cascadia Code", "JetBrains Mono", Menlo, Consolas, monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1080px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

::selection {
  background: var(--accent-dim);
  color: var(--text);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top utility bar */
.topbar {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--faint);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar span:last-child {
  color: var(--muted);
}

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switch a {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}

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

.lang-switch a[aria-current] {
  color: var(--text);
}

.lang-switch .sep {
  color: var(--faint);
}

/* Inline email links */
.contact-email {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 14px;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Header */
header {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 11, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand .mark {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a.cta-link {
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 8px 14px;
}

.nav-links a.cta-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Eyebrow label */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* Hero */
.hero {
  padding: 120px 0 40px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 18ch;
}

.hero h1 .accent-line {
  color: var(--accent);
}

.hero .lede {
  margin-top: 28px;
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

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

.actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  transition: all 0.15s ease;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-primary {
  background: var(--text);
  color: #0a0a0b;
  border-color: var(--text);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--muted);
}

.loc-line {
  margin-top: 56px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--faint);
  letter-spacing: 0.02em;
}

/* Sections */
section {
  border-top: 1px solid var(--border);
}

.section {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  max-width: 24ch;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 60ch;
}

/* Service grid */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.15s ease;
}

.service-card:hover {
  border-color: var(--border-strong);
}

.service-card .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 600;
}

.service-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.process-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}

.process-step .step-no {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}

.process-step p {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Prose content for inner pages */
.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
}

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

.prose p {
  color: var(--muted);
  margin-bottom: 16px;
}

.prose ul {
  list-style: none;
  margin: 0 0 24px;
}

.prose ul li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  margin-bottom: 10px;
}

.prose ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
}

/* Price / auth callouts */
.callouts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.callout .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.callout strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.callout p {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.callout.note {
  border-color: var(--accent-dim);
  background: var(--accent-dim);
}

.callout.note .label {
  color: var(--accent);
}

/* Page header */
.page-head {
  padding: 96px 0 0;
}

.page-head h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 22ch;
}

.page-head .sub {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  max-width: 58ch;
  line-height: 1.7;
}

/* Contact form */
form.contact {
  margin-top: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field .hint {
  font-size: 12px;
  color: var(--faint);
}

.form-note {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--faint);
  line-height: 1.7;
}

/* Formspree messages (hidden until the library toggles data-fs-active) */
.fs-status,
.fs-field-error {
  display: none;
  margin-top: 8px;
}

[data-fs-error][data-fs-active],
[data-fs-success][data-fs-active] {
  display: block;
}

[data-fs-error]:not([data-fs-error=''])[data-fs-active] {
  font-size: 12px;
  color: #d97878;
}

[data-fs-error=''][data-fs-active] {
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 120, 120, 0.4);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 13px;
  color: #d97878;
  background: rgba(217, 120, 120, 0.08);
}

[data-fs-success][data-fs-active] {
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(125, 155, 209, 0.4);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-dim);
}

[data-fs-field][aria-invalid='true'] {
  border-color: #d97878;
}

/* Honeypot — never shown to people, only to bots */
.hp-field {
  display: none !important;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 88px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--mono);
  font-size: 14px;
}

.footer-brand .mark {
  color: var(--accent);
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
  font-weight: 500;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s ease;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
}

/* Responsive nav */
@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 2px;
  }

  .nav-links a {
    padding: 6px 10px;
  }

  .hero {
    padding: 72px 0 32px;
  }

  .section {
    padding: 64px 0;
  }
}