/* Phaeth — shared stylesheet for all pages */

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

:root {
  --bg:        #080b12;
  --bg-card:   #0d1220;
  --bg-card2:  #111827;
  --border:    rgba(255,255,255,0.07);
  --border-hi: rgba(99,179,237,0.35);
  --accent:    #63b3ed;
  --accent2:   #9f7aea;
  --accent3:   #68d391;
  --warn:      #f6ad55;
  --text:      #e2e8f0;
  --muted:     #718096;
  --mono:      'JetBrains Mono', monospace;
  --sans:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* ─── GLOW BLOBS ─── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 600px; height: 600px; background: var(--accent);  top: -200px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: var(--accent2); bottom: -150px; right: -100px; }
.blob-3 { width: 400px; height: 400px; background: var(--accent3); top: 40%; left: 50%; transform: translate(-50%,-50%); }

/* ─── LAYOUT ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 18px 0;
  background: rgba(8,11,18,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
nav.site-nav .inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo img { height: 28px; }
.logo:hover { text-decoration: none; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text); font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-links a.active { color: var(--accent); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.7; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
}
.nav-dropdown-menu a:hover {
  background: rgba(99,179,237,0.08);
  text-decoration: none;
}

.nav-cta {
  padding: 9px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover { opacity: 0.88; text-decoration: none; transform: translateY(-1px); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(99,179,237,0.08);
  border: 1px solid rgba(99,179,237,0.25);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
}
.badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ─── HERO ─── */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 900; line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 1000px;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted); max-width: 720px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-sub strong { color: var(--text); }

.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  display: inline-block;
  padding: 14px 28px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important; font-family: var(--sans); font-size: 0.95rem;
  font-weight: 700; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn-secondary {
  display: inline-block;
  padding: 14px 28px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: var(--text) !important;
  border: 1px solid var(--border-hi);
  font-family: var(--sans); font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,0.07); transform: translateY(-1px); text-decoration: none; }

/* ─── SECTION SHARED ─── */
section { padding: 90px 0; position: relative; z-index: 1; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.18; margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 640px; line-height: 1.75;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── CARD GRIDS ─── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 28px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}
.card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.card-num {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.card-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.card-tag {
  display: inline-block; margin-bottom: 14px;
  padding: 3px 10px; border-radius: 6px;
  background: rgba(99,179,237,0.1);
  font-family: var(--mono); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
}
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p  { font-size: 0.93rem; color: var(--muted); line-height: 1.7; }
.card a.card-link {
  display: inline-block; margin-top: 16px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--accent);
}
.card a.card-link::after { content: ' →'; }

/* ─── BIO LIST (about / team cards) ─── */
.bio-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.bio-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.bio-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}
.bio-list li strong { color: var(--text); font-weight: 600; }

/* ─── DASHBOARD vs MODEL TABLE ─── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.compare-col { padding: 32px; }
.compare-col + .compare-col { border-left: 1px solid var(--border); }
.compare-col.is-old { color: var(--muted); }
.compare-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 18px;
}
.compare-col.is-old h4 { color: var(--muted); }
.compare-col.is-new h4 { color: var(--accent); }
.compare-col ul { list-style: none; }
.compare-col li {
  font-size: 0.92rem; line-height: 1.8;
  padding-left: 18px; position: relative;
}
.compare-col li::before {
  content: ''; position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: currentColor; opacity: 0.5;
}
.compare-punchline {
  margin-top: 36px;
  text-align: center;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--text);
}
.compare-punchline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; }
  .compare-col + .compare-col { border-left: none; border-top: 1px solid var(--border); }
}

/* ─── STAGE LIST (how it works) ─── */
.stages {
  display: flex; flex-direction: column;
  gap: 0; margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.stage {
  display: grid;
  grid-template-columns: 84px 1fr;
  padding: 28px 30px;
  gap: 24px;
  align-items: start;
}
.stage + .stage { border-top: 1px solid var(--border); }
.stage-num {
  font-family: var(--mono); font-size: 1.6rem; font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stage h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.stage p  { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.stage .stage-detail {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.88rem; color: var(--muted);
  font-family: var(--mono);
}

/* ─── EXAMPLE ALERT CARD (two-language pattern) ─── */
.alert-example {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--warn);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 18px;
}
.alert-example .alert-when {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warn); margin-bottom: 14px;
}
.alert-example .alert-headline {
  font-size: 1.15rem; font-weight: 700;
  line-height: 1.45; color: var(--text);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.alert-example .alert-plain {
  font-size: 0.95rem; color: var(--text); opacity: 0.85;
  line-height: 1.65; margin-bottom: 14px;
}
.alert-example .alert-detail {
  font-family: var(--mono); font-size: 0.78rem;
  line-height: 1.7; color: var(--muted);
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border-radius: 6px;
  border-left: 2px solid var(--border);
  margin-bottom: 14px;
}
.alert-example .alert-detail-label {
  display: block;
  font-family: var(--sans); font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 700;
  margin-bottom: 6px;
}
.alert-example .alert-rec {
  display: flex; gap: 10px;
  font-size: 0.95rem; color: var(--text); line-height: 1.6;
}
.alert-example .alert-rec::before {
  content: '→'; color: var(--accent3); font-weight: 700;
  flex-shrink: 0; font-size: 1.05rem; line-height: 1.5;
}
.alert-example .alert-rec strong { color: var(--accent3); }

/* ─── INLINE LIST ─── */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 24px;
  margin-top: 28px;
}
.feature-list li {
  font-size: 0.92rem; color: var(--text);
  padding-left: 22px; position: relative;
  line-height: 1.5;
}
.feature-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent3); font-weight: 700;
}
.feature-list li small {
  display: block; color: var(--muted);
  font-size: 0.82rem; margin-top: 2px;
}

/* ─── DATA FLOW ─── */
.flow-row {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 0;
  margin-top: 40px; justify-content: center;
}
.flow-node {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.82rem; text-align: center;
  min-width: 100px;
}
.flow-node span:first-child { font-size: 1.5rem; }
.flow-node span:last-child  { color: var(--muted); font-size: 0.75rem; line-height: 1.3; }
.flow-arrow {
  color: var(--muted); font-size: 1.1rem;
  padding: 0 4px; flex-shrink: 0;
}
.flow-note {
  width: 100%; text-align: center;
  margin-top: 18px;
  font-family: var(--mono); font-size: 0.75rem; color: var(--muted);
}

/* ─── TERMINAL CARD ─── */
.terminal {
  margin: 50px auto 0;
  max-width: 680px; width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  text-align: left;
}
.terminal-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.terminal-title {
  flex: 1; text-align: center;
  font-family: var(--mono); font-size: 0.72rem; color: var(--muted);
}
.terminal-body { padding: 20px 22px; font-family: var(--mono); font-size: 0.82rem; line-height: 1.9; }
.t-prompt { color: var(--accent); }
.t-cmd    { color: var(--text); }
.t-ok     { color: var(--accent3); }
.t-warn   { color: var(--warn); }
.t-dim    { color: var(--muted); font-style: italic; }
.t-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--accent); vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ─── FINAL CTA ─── */
.final-cta {
  text-align: center; padding: 90px 24px;
  position: relative; z-index: 1;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.final-cta h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.final-cta p {
  font-size: 1.05rem; color: var(--muted);
  max-width: 580px; margin: 0 auto 32px;
}
.compliance-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-top: 32px;
}
.comp-badge {
  padding: 6px 14px; border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-family: var(--mono); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.06em; color: var(--muted);
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  position: relative; z-index: 1;
}
footer .footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px;
}
footer p { font-size: 0.82rem; color: var(--muted); margin: 0; }
footer a {
  font-size: 0.82rem; color: var(--muted);
}
footer a:hover { color: var(--accent); text-decoration: none; }
footer .sep { color: var(--muted); opacity: 0.4; }

/* ─── INDUSTRY HERO GRADIENT ─── */
.industry-hero {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative; z-index: 1;
}
.industry-emoji { font-size: 3.4rem; display: block; margin-bottom: 18px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
  .flow-row { flex-direction: column; align-items: center; }
  .flow-arrow { transform: rotate(90deg); }
  .nav-links { gap: 14px; }
  .stage { grid-template-columns: 1fr; gap: 8px; }
  .stage-num { font-size: 1.2rem; }
}

/* ─── MOBILE RESPONSIVENESS OVERRIDES ─── */
img,
video {
  max-width: 100%;
  height: auto;
}

.card,
.compare,
.stages,
.alert-example,
.flow-node {
  max-width: 100%;
}

.terminal {
  width: min(100%, 680px);
}

.terminal-body,
.alert-example .alert-detail,
.card p,
.section-sub,
.hero-sub {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 900px) {
  nav.site-nav {
    position: sticky;
    padding: 12px 0;
  }

  nav.site-nav .inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
  }

  .logo {
    flex: 0 0 100%;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .nav-links a {
    font-size: 0.86rem;
  }

  .nav-dropdown-menu {
    left: auto;
    right: 0;
    transform: none;
  }

  .hero,
  .industry-hero {
    padding-top: 88px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  nav.site-nav,
  nav.site-nav .inner,
  .container,
  .hero,
  .industry-hero,
  .final-cta,
  footer {
    max-width: 100vw;
  }

  nav.site-nav .inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo img {
    height: 24px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 420px;
    align-items: center;
    justify-content: center;
    gap: 8px 10px;
  }

  .nav-links li {
    min-width: 0;
    text-align: center;
  }

  .nav-links li:last-child {
    grid-column: 1 / -1;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .nav-links .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 8px 12px;
    font-size: 0.82rem !important;
  }

  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  section {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding: 76px 18px 58px;
  }

  .industry-hero {
    padding: 76px 18px 48px;
  }

  .blob {
    filter: blur(90px);
    opacity: 0.09;
  }

  .blob-1 { width: 360px; height: 360px; top: -120px; left: -160px; }
  .blob-2 { width: 320px; height: 320px; bottom: -120px; right: -160px; }
  .blob-3 { width: 280px; height: 280px; }

  .hero h1,
  .industry-hero h1,
  .section-title,
  .final-cta h2,
  .hero-sub,
  .section-sub,
  .final-cta p {
    max-width: calc(100vw - 36px) !important;
  }

  .hero h1,
  .industry-hero h1,
  .section-title,
  .final-cta h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-sub br {
    display: none;
  }

  .hero-sub,
  .section-sub,
  .final-cta p {
    width: 100%;
    font-size: 0.96rem;
  }

  .cta-row {
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .nav-cta {
    white-space: normal;
    text-align: center;
  }

  .cta-row .btn-primary,
  .cta-row .btn-secondary {
    width: min(100%, 320px);
  }

  .cards-3,
  .cards-4,
  .feature-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .card,
  .compare-col,
  .stage {
    padding: 24px 22px;
  }

  .compare {
    margin-top: 32px;
  }

  .flow-row {
    gap: 10px;
  }

  .flow-node {
    width: 100%;
  }

  .compare,
  .stages,
  .alert-example {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .terminal {
    width: min(86vw, 680px);
    max-width: calc(100vw - 36px);
    margin-top: 36px;
    border-radius: 12px;
  }

  .terminal-bar {
    padding: 10px 12px;
  }

  .terminal-title {
    text-align: right;
    min-width: 0;
  }

  .terminal-body {
    padding: 16px 18px;
    font-size: 0.72rem;
    line-height: 1.85;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .terminal-body > div {
    white-space: normal;
  }

  footer .footer-inner {
    gap: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 10vw, 2.35rem);
    line-height: 1.08;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 18px;
  }

  .terminal-body {
    font-size: 0.68rem;
  }

  footer .sep {
    display: none;
  }
}

@media (max-width: 390px) {
  .nav-links {
    max-width: 330px;
  }
}
