/* ECCN Remote Support — styled to match eccn.ca (Citadela / Open Sans theme) */

:root {
  --ink: #222;
  --ink-body: rgba(34, 34, 34, 0.7);
  --accent: #016dff;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --border: rgba(34, 34, 34, 0.1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink-body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

h1, h2, h3 {
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 16px;
}

h1 { font-size: 41.6px; line-height: 1.2; }
h2 { font-size: 28px; line-height: 1.3; }
h3 { font-size: 20px; font-weight: 700; }

/* Header */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.logo img {
  display: block;
  height: 48px;
  width: auto;
}

.site-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-nav a {
  display: block;
  padding: 5px 20px;
  color: var(--ink);
  font-size: 16px;
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--accent);
  text-decoration: none;
}

/* Hero */

.hero {
  text-align: center;
  padding: 90px 20px 60px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px;
}

.hero h1 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #0159d1;
  text-decoration: none;
}

.fine-print {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(34, 34, 34, 0.5);
}

.fine-print a {
  color: rgba(34, 34, 34, 0.6);
  text-decoration: underline;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 15px;
}

.hero-narrow {
  padding: 70px 20px 40px;
}

/* Guide / manual setup steps */

.guide {
  padding: 20px 20px 60px;
}

.wrap-narrow {
  max-width: 760px;
}

.guide-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.guide-step:first-child {
  border-top: none;
}

.guide-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.guide-body { flex: 1 1 auto; min-width: 0; }
.guide-body h3 { margin-bottom: 10px; }
.guide-body p { margin: 0 0 12px; }
.guide-body p:last-child { margin-bottom: 0; }

.guide-list {
  margin: 0 0 12px;
  padding-left: 20px;
}

.guide-list li { margin-bottom: 10px; }
.guide-list li:last-child { margin-bottom: 0; }

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  background: rgba(34, 34, 34, 0.06);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}

.field-table {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin: 8px 0 16px;
}

.field-row {
  display: flex;
  border-top: 1px solid var(--border);
}

.field-row:first-child { border-top: none; }

.field-label {
  flex: 0 0 160px;
  padding: 12px 16px;
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

.field-value {
  flex: 1 1 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
}

.callout {
  background: #fff7e6;
  border: 1px solid #f0d9a8;
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 15px;
  color: rgba(34, 34, 34, 0.85);
}

.callout code {
  background: rgba(34, 34, 34, 0.08);
}

@media (max-width: 600px) {
  .guide-step { flex-direction: column; gap: 14px; }
  .field-row { flex-direction: column; }
  .field-label { flex: none; }
}

/* Steps */

.steps {
  background: var(--bg-soft);
  padding: 60px 20px;
}

.steps .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; }
.step p { margin: 0; }

/* Note */

.note {
  padding: 60px 20px;
  text-align: center;
}

.note .wrap { max-width: 640px; }

/* Footer */

.site-footer {
  background: var(--bg-soft);
  padding: 60px 20px 40px;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding: 0;
}

.footer-nav a {
  padding: 5px 20px;
  color: var(--ink);
}

.footer-nav a:hover { color: var(--accent); text-decoration: none; }

.tagline {
  margin: 0;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.5);
}

@media (max-width: 700px) {
  .steps .wrap {
    grid-template-columns: 1fr;
  }
  .hero { padding: 60px 20px 40px; }
  h1 { font-size: 32px; }
}
