/*
Source: https://templates.inuno.app
Copyright: 2026 templates.inuno.app
Free template attribution/backlink required.
*/

:root {
  --ink: #182033;
  --muted: #6b778b;
  --line: #dfe6ef;
  --soft: #f6f8fb;
  --panel: #ffffff;
  --accent: #2563eb;
  --mint: #16a78a;
  --amber: #f59e0b;
  --shadow: 0 18px 50px rgba(24, 32, 51, .1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, .055) 1px, transparent 1px),
    radial-gradient(circle at 84% 8%, rgba(22, 167, 138, .16), transparent 28%),
    #f8fafc;
  background-size: 36px 36px, 36px 36px, auto, auto;
}

a, button, input, textarea {
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { color: var(--accent); }
button { font: inherit; cursor: pointer; }

.workspace {
  width: min(1500px, calc(100% - 40px));
  margin: 20px auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.sidebar,
.main-panel,
.hero-strip,
.doc-board,
.article-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.sidebar {
  min-height: calc(100vh - 100px);
  padding: 16px;
  position: sticky;
  top: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 900;
}

.brand span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: #dbeafe;
  font-weight: 950;
}

.brand:hover span,
.brand:focus-visible span {
  background: var(--accent);
  color: #fff;
}

.sidebar nav,
.side-card {
  display: grid;
  gap: 8px;
}

.sidebar nav a,
.side-card a {
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #475569;
  font-weight: 800;
}

.sidebar nav a:hover,
.sidebar nav a:focus-visible,
.side-card a:hover,
.side-card a:focus-visible,
.sidebar nav a.active {
  transform: translateX(2px);
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--accent);
}

.side-card {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.side-card p {
  margin: 0 0 4px;
  color: #8793a6;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.main-panel {
  padding: 18px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.search {
  width: min(620px, 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.search span {
  color: #8793a6;
  font-size: 12px;
  font-weight: 950;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.top-action,
.section-head a,
.contact-form button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.top-action:hover,
.top-action:focus-visible,
.section-head a:hover,
.section-head a:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 14px 26px rgba(24, 32, 51, .18);
}

.hero-strip {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: .94;
  letter-spacing: 0;
}

.hero-strip p:not(.eyebrow),
.article-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-strip img,
.page-photo {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.status-grid {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.status-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.status-grid span,
.status-grid strong,
.status-grid em {
  display: block;
}

.status-grid span,
.status-grid em {
  color: var(--muted);
}

.status-grid strong {
  margin: 6px 0 2px;
  font-size: 34px;
  line-height: 1;
}

.status-grid em {
  font-style: normal;
  font-size: 13px;
}

.doc-board,
.article-card {
  padding: 26px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

h2 {
  margin: 0;
  font-size: 30px;
}

.doc-table {
  display: grid;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.doc-table a {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  align-items: center;
}

.doc-table a:last-child {
  border-bottom: 0;
}

.doc-table a:hover,
.doc-table a:focus-visible {
  background: #eff6ff;
  color: var(--ink);
}

.doc-table span,
.doc-table em {
  color: var(--muted);
  font-style: normal;
}

.doc-table span {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 13px;
  font-weight: 850;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
}

.qa-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.qa-list article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.qa-list h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #475569;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(37, 99, 235, .18);
  border-color: var(--accent);
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  width: min(1500px, calc(100% - 40px));
  margin: 0 auto 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, .45);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  color: #526174;
}

.site-footer p { margin: 0; }
.site-footer nav,
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer a {
  font-weight: 850;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.site-footer p a:hover,
.site-footer p a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-weight: 950;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.social-links svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

@media (max-width: 1050px) {
  .workspace,
  .hero-strip,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    min-height: auto;
    position: static;
  }

  .sidebar nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .side-card {
    display: none;
  }
}

@media (max-width: 720px) {
  .workspace,
  .site-footer {
    width: min(100% - 28px, 1500px);
  }

  .main-panel,
  .hero-strip,
  .doc-board,
  .article-card {
    padding: 18px;
    border-radius: 16px;
  }

  .topbar,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .status-grid {
    grid-template-columns: 1fr 1fr;
  }

  .doc-table a {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
