/*
Theme Name: Arcline Demo
Theme URI: https://tooldocs.io
Description: Minimal demo theme for showcasing ToolDocs plugin features. Not a real company — Arcline is a fictional SaaS brand used for demonstration purposes.
Version: 1.0.0
Author: ToolDocs
Author URI: https://tooldocs.io
Text Domain: arcline-demo
*/

/* ================================================================
   VARIABLES
   ================================================================ */
:root {
  /* Arcline brand */
  --arc-slate: #2D3047;
  --arc-slate-deep: #1B1D2E;
  --arc-slate-mid: #3D4060;
  --arc-coral: #E07A5F;
  --arc-coral-hover: #C96A51;
  --arc-teal: #3D7A80;
  --arc-ice: #F0F4F8;
  --arc-white: #FFFFFF;
  --arc-bg: #FAFBFC;
  --arc-text: #1D1D1F;
  --arc-muted: #6E7191;
  --arc-border: #E2E5EB;
  --arc-border-light: #EEF0F4;
  --arc-green: #059669;
  --arc-green-bg: #D1FAE5;
  --arc-red: #DC2626;

  /* ToolDocs banner */
  --td-navy: #0F1B2D;
  --td-navy-light: #1A2B44;
  --td-amber: #F4B942;
}


/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--arc-text);
  background: var(--arc-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color .2s; }


/* ================================================================
   TOOLDOCS DEMO BANNER
   ================================================================ */
.td-banner {
  background: linear-gradient(90deg, var(--td-navy), var(--td-navy-light));
  color: #fff;
  padding: 10px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 2px solid var(--td-amber);
}
.td-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.td-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.td-badge {
  background: var(--td-amber);
  color: var(--td-navy);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.td-badge .pulse {
  width: 6px;
  height: 6px;
  background: var(--td-navy);
  border-radius: 50%;
  animation: td-pulse 2s ease-in-out infinite;
}
@keyframes td-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.td-banner-text {
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}
.td-banner-text strong {
  color: #fff;
  font-weight: 600;
}
.td-banner-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}
.td-banner-meta {
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.td-banner-link {
  color: var(--td-amber);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.td-banner-link:hover {
  color: #fff;
}


/* ================================================================
   SITE HEADER
   ================================================================ */
.site-header {
  background: var(--arc-white);
  border-bottom: 1px solid var(--arc-border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 32px;
  height: 32px;
}
.brand-mark svg {
  width: 100%;
  height: 100%;
}
.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--arc-slate);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: var(--arc-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.main-nav a:hover {
  color: var(--arc-text);
}
.main-nav a.active {
  color: var(--arc-text);
  font-weight: 700;
}
.nav-cta {
  background: var(--arc-slate);
  color: var(--arc-white) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
}
.nav-cta:hover {
  background: var(--arc-slate-deep);
}


/* ================================================================
   LEAN FOOTER
   ================================================================ */
.site-footer {
  background: var(--arc-slate-deep);
  padding: 24px 0;
  font-size: 13px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .35);
}
.footer-brand {
  font-weight: 800;
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  letter-spacing: -0.03em;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-right a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.footer-right a:hover {
  color: #fff;
}
.footer-tooldocs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--td-amber);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
}
.footer-tooldocs:hover {
  color: #fff;
}
.footer-sep {
  color: rgba(255, 255, 255, .15);
}


/* ================================================================
   SHARED: BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 10px;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn i { font-size: 11px; }
.btn-primary {
  background: var(--arc-slate);
  color: var(--arc-white);
}
.btn-primary:hover {
  background: var(--arc-slate-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 48, 71, .3);
}
.btn-ghost {
  background: transparent;
  color: var(--arc-slate);
  border: 1.5px solid var(--arc-border);
}
.btn-ghost:hover {
  border-color: var(--arc-slate);
  background: var(--arc-ice);
}


/* ================================================================
   SHARED: SECTION HEADERS
   ================================================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--arc-coral);
  margin-bottom: 14px;
  background: rgba(224, 122, 95, .08);
  padding: 5px 12px;
  border-radius: 16px;
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--arc-slate);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 600px;
  margin: 0 auto 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--arc-muted);
  max-width: 1200px;
  margin: 0 auto;
}


/* ================================================================
   HOMEPAGE: HERO
   ================================================================ */
.hero {
  padding: 80px 0 100px;
  background: var(--arc-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--arc-border) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: .5;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 122, 95, .08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--arc-coral);
  margin-bottom: 20px;
  background: rgba(224, 122, 95, .08);
  padding: 6px 14px;
  border-radius: 20px;
}
.hero-eyebrow i { font-size: 10px; }
.hero h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--arc-slate);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--arc-coral), #D4856F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--arc-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero floating file cards */
.hero-visual { position: relative; height: 420px; }
.float-card {
  position: absolute;
  background: var(--arc-white);
  border: 1px solid var(--arc-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 24px -6px rgba(0, 0, 0, .08);
  transition: transform .3s, box-shadow .3s;
  width: 280px;
}
.float-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, .12);
}
.float-card.c1 { top: 0; left: 20px; z-index: 3; }
.float-card.c2 { top: 135px; right: 0; z-index: 2; }
.float-card.c3 { bottom: 0; left: 60px; z-index: 1; }
.fc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.fc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.fc-icon.pdf { background: #FEE2E2; color: #DC2626; }
.fc-icon.doc { background: #DBEAFE; color: #2563EB; }
.fc-icon.zip { background: #D1FAE5; color: #059669; }
.fc-name { font-weight: 700; font-size: 14px; color: var(--arc-text); line-height: 1.3; }
.fc-meta { font-size: 12px; color: var(--arc-muted); display: flex; align-items: center; gap: 12px; }
.fc-meta span { display: flex; align-items: center; gap: 4px; }
.fc-badge {
  display: inline-block; margin-top: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
}
.fc-badge.gated { background: var(--arc-slate); color: var(--arc-white); }
.fc-badge.public { background: #D1FAE5; color: #065F46; }
.fc-badge.whitelist { background: var(--arc-coral); color: var(--arc-white); }


/* ================================================================
   HOMEPAGE: DEMO PATHS
   ================================================================ */
.demo-paths { padding: 100px 0; background: var(--arc-bg); }
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.path-card {
  background: var(--arc-white);
  border: 1px solid var(--arc-border);
  border-radius: 16px;
  padding: 36px;
  transition: all .25s;
}
.path-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px -10px rgba(45, 48, 71, .12);
}
.path-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 20px;
}
.path-card.visitor .path-tag { background: var(--arc-ice); color: var(--arc-slate); }
.path-card.admin .path-tag { background: rgba(224, 122, 95, .1); color: var(--arc-coral); }
.path-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 22px;
}
.path-card.visitor .path-icon { background: var(--arc-slate); color: var(--arc-white); }
.path-card.admin .path-icon { background: var(--arc-coral); color: var(--arc-white); }
.path-title {
  font-size: 26px; font-weight: 800; color: var(--arc-slate);
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.path-desc {
  font-size: 15px; color: var(--arc-muted);
  margin-bottom: 22px; line-height: 1.65;
}
.path-list { list-style: none; margin-bottom: 28px; }
.path-list li {
  display: flex; align-items: flex-start;
  gap: 10px; padding: 6px 0; font-size: 14px;
}
.path-list li i { font-size: 12px; margin-top: 5px; flex-shrink: 0; }
.path-card.visitor .path-list i { color: var(--arc-teal); }
.path-card.admin .path-list i { color: var(--arc-coral); }
.path-creds {
  background: var(--arc-ice);
  border: 1px solid var(--arc-border-light);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.path-creds-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--arc-muted); margin-bottom: 10px;
}
.path-creds-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 4px 0; font-size: 14px;
}
.path-creds-row span:first-child { color: var(--arc-muted); }
.path-creds-row code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 500; color: var(--arc-text);
  background: var(--arc-white); padding: 2px 8px;
  border-radius: 4px; border: 1px solid var(--arc-border);
}
.path-btn {
  display: block; text-align: center; padding: 14px;
  border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: 14px; transition: all .2s;
}
.path-card.visitor .path-btn { background: var(--arc-slate); color: var(--arc-white); }
.path-card.visitor .path-btn:hover { background: var(--arc-slate-deep); }
.path-card.admin .path-btn { background: var(--arc-coral); color: var(--arc-white); }
.path-card.admin .path-btn:hover { background: var(--arc-coral-hover); }


/* ================================================================
   HOMEPAGE: FEATURE GRID
   ================================================================ */
.features-section {
  padding: 100px 0;
  background: var(--arc-white);
  border-top: 1px solid var(--arc-border-light);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.feat-card {
  background: var(--arc-bg);
  border: 1px solid var(--arc-border-light);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .25s;
}
.feat-card:hover {
  border-color: var(--arc-slate);
  background: var(--arc-white);
  box-shadow: 0 8px 24px -8px rgba(45, 48, 71, .1);
}
.feat-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.feat-icon.teal { background: rgba(61, 122, 128, .1); color: var(--arc-teal); }
.feat-icon.coral { background: rgba(224, 122, 95, .1); color: var(--arc-coral); }
.feat-icon.slate { background: rgba(45, 48, 71, .08); color: var(--arc-slate); }
.feat-title {
  font-size: 20px; font-weight: 700; color: var(--arc-slate);
  margin-bottom: 6px; letter-spacing: -0.02em;
}
.feat-desc {
  font-size: 13px; color: var(--arc-muted);
  margin-bottom: 18px; line-height: 1.55;
}
.feat-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 8px; border-radius: 4px;
  display: inline-block;
}
.feat-tag.shortcode { background: var(--arc-slate); color: var(--arc-white); }
.feat-tag.public { background: #D1FAE5; color: #065F46; }
.feat-tag.gated { background: var(--arc-slate); color: var(--arc-white); }
.feat-tag.wl { background: var(--arc-coral); color: var(--arc-white); }
.feat-tag.admin { background: rgba(45, 48, 71, .08); color: var(--arc-slate); }
.feat-footer { text-align: center; padding-top: 12px; }
.feat-footer a {
  color: var(--arc-slate); font-weight: 700; text-decoration: none; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: 1.5px solid var(--arc-border);
  border-radius: 10px; transition: all .2s;
}
.feat-footer a:hover { border-color: var(--arc-slate); background: var(--arc-ice); }


/* ================================================================
   HOMEPAGE: WHAT TO TRY
   ================================================================ */
.whattotry {
  padding: 100px 0;
  background: var(--arc-slate);
  color: var(--arc-white);
  position: relative;
  overflow: hidden;
}
.whattotry::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.whattotry .section-inner { position: relative; }
.whattotry .section-badge { background: rgba(224, 122, 95, .15); color: var(--arc-coral); }
.whattotry .section-title { color: var(--arc-white); }
.whattotry .section-sub { color: rgba(255, 255, 255, .6); }
.try-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.try-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 28px 22px;
  transition: all .25s;
}
.try-item:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-2px);
}
.try-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--arc-coral); color: var(--arc-white);
  font-weight: 800; font-size: 12px; margin-bottom: 16px;
}
.try-item h4 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px; line-height: 1.3;
}
.try-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}


/* ================================================================
   RESOURCES PAGE: DEMO SECTIONS
   ================================================================ */
.demo-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
  border-bottom: 1px solid var(--arc-border-light);
}
.demo-section:last-of-type {
  border-bottom: none;
  padding-bottom: 80px;
}
.demo-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 6px; margin-bottom: 16px;
}
.demo-label.feature { background: var(--arc-ice); color: var(--arc-slate); }
.demo-label.public { background: var(--arc-green-bg); color: #065F46; }
.demo-label.gated { background: var(--arc-slate); color: var(--arc-white); }
.demo-label.whitelist { background: var(--arc-coral); color: var(--arc-white); }
.demo-title {
  font-size: 28px; font-weight: 800; color: var(--arc-slate);
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.demo-desc {
  font-size: 15px; color: var(--arc-muted); max-width: 640px;
  line-height: 1.6; margin-bottom: 28px;
}

/* Shortcode hint pill */
.shortcode-hint {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--arc-slate-deep); color: rgba(255, 255, 255, .7);
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  padding: 8px 14px; border-radius: 6px; margin-bottom: 20px;
}
.shortcode-hint .tag { color: var(--td-amber); }

/* Rendered output box */
.demo-output {
  background: var(--arc-white);
  border: 1.5px dashed var(--arc-border);
  border-radius: 12px;
  padding: 28px 32px;
  position: relative;
}
.demo-output-label {
  position: absolute; top: -10px; left: 20px;
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--arc-muted);
  background: var(--arc-bg); padding: 2px 10px; border-radius: 4px;
}
.demo-output-note {
  margin-top: 14px;
  display: flex; gap: 20px;
  font-size: 11px; color: var(--arc-muted);
}
.demo-output-note strong { color: var(--arc-text); }

/* File cards for access-type sections */
.file-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}
.file-card {
  background: var(--arc-white);
  border: 1px solid var(--arc-border-light);
  border-radius: 12px;
  padding: 22px 24px;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
  color: var(--arc-text);
  display: block;
}
.file-card:hover {
  border-color: var(--arc-slate);
  box-shadow: 0 4px 16px -6px rgba(45, 48, 71, .1);
}
.file-card-top {
  display: flex; align-items: center; gap: 14px; margin-bottom: 8px;
}
.file-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.file-card-icon.pdf { background: #FEE2E2; color: #DC2626; }
.file-card-icon.zip { background: #D1FAE5; color: #059669; }
.file-card-icon.xls { background: #FEF3C7; color: #D97706; }
.file-card-name {
  font-size: 15px; font-weight: 700; color: var(--arc-slate); line-height: 1.3;
}
.file-card-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--arc-muted);
  margin-bottom: 10px; padding-left: 54px;
}
.file-card-desc {
  font-size: 13px; color: var(--arc-muted);
  line-height: 1.5; padding-left: 54px;
}
.file-card-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 4px;
  margin-top: 12px; margin-left: 54px;
}
.file-card-badge.public { background: var(--arc-green-bg); color: #065F46; }
.file-card-badge.reg { background: var(--arc-slate); color: var(--arc-white); }
.file-card-badge.wl { background: var(--arc-coral); color: var(--arc-white); }
.file-card-badge i { font-size: 9px; }


/* ================================================================
   RESOURCES PAGE: PAGE HEADER
   ================================================================ */
.page-header {
  background: var(--arc-white);
  border-bottom: 1px solid var(--arc-border-light);
  padding: 56px 0 48px;
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--arc-coral);
  margin-bottom: 14px; background: rgba(224, 122, 95, .08);
  padding: 6px 14px; border-radius: 20px;
}
.page-eyebrow i { font-size: 10px; }
.page-title {
  font-size: clamp(32px, 4vw, 44px); font-weight: 800;
  color: var(--arc-slate); letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 12px;
}
.page-sub {
  font-size: 17px; color: var(--arc-muted);
  max-width: 620px; line-height: 1.6;
}


/* ================================================================
   GENERIC PAGE TEMPLATE (login, registration, whitelist, etc.)
   ================================================================ */
.page-content-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 32px 80px;
  background: var(--arc-white);
  position: relative;
}
.page-content-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--arc-border) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: .3;
  pointer-events: none;
}
.page-content-inner {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.page-content-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--arc-slate);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-align: center;
}
body:not(.page-id-10) .page-content-body {
  background: var(--arc-white);
  border: 1px solid var(--arc-border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 12px 40px -12px rgba(45, 48, 71, .1);
}

/* Basic content styling inside ToolDocs pages */
.page-content-body p {
  font-size: 15px;
  color: var(--arc-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.page-content-body a {
  color: var(--arc-teal);
  font-weight: 600;
  text-decoration: none;
}
.page-content-body a:hover {
  color: var(--arc-slate);
}
.page-content-body input[type="text"],
.page-content-body input[type="email"],
.page-content-body input[type="password"],
.page-content-body input[type="tel"],
.page-content-body textarea,
.page-content-body select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--arc-border);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--arc-text);
  background: var(--arc-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  margin-bottom: 14px;
}
.page-content-body input:focus,
.page-content-body textarea:focus,
.page-content-body select:focus {
  border-color: var(--arc-slate);
  box-shadow: 0 0 0 3px rgba(45, 48, 71, .08);
}
.page-content-body input[type="submit"],
.page-content-body button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: var(--arc-slate);
  color: var(--arc-white);
  transition: background .2s;
  margin-top: 4px;
}
.page-content-body input[type="submit"]:hover,
.page-content-body button[type="submit"]:hover {
  background: var(--arc-slate-deep);
}
.page-content-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--arc-text);
  margin-bottom: 5px;
}


/* ================================================================
   TOOLDOCS OVERRIDES
   Customize ToolDocs login/registration form styling to match Arcline.
   Update selectors below to match actual ToolDocs CSS classes.
   ================================================================ */

/*
 * TODO: Once ToolDocs is installed, inspect the login modal and
 * registration form markup and add targeted overrides here.
 * Example patterns:
 *
 * .tooldocs-login-modal { border-radius: 14px; }
 * .tooldocs-login-modal input { border-radius: 10px; border: 1.5px solid var(--arc-border); }
 * .tooldocs-login-modal .btn { background: var(--arc-slate); border-radius: 10px; }
 * .tooldocs-register-form input { border-radius: 10px; }
 */

 .td-login-container a{
  text-decoration: none;
  color: var(--arc-teal);
 }

 body.page-id-10 .td-login-form {
  margin: auto;
 }

 .page-id-12 .page-content-body, .page-id-11 .page-content-body {
  max-width: 600px;
  margin: auto;
 }

 .page-id-12 .already-logged-in, .page-id-11 .already-logged-in {
  margin-bottom: 0px;
 }


 .td-link-container a, .td-category-files-container a{
    text-decoration: none;
    color: var(--arc-slate-mid);
 }
.td-link-container a:hover, .td-category-files-container a:hover {
  color: var(--arc-coral);
}

.td-link-icon i {
  color: var(--arc-coral);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .try-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner,
  .path-grid,
  .feat-grid,
  .try-grid,
  .file-card-grid {
    grid-template-columns: 1fr;
  }
  .main-nav { display: none; }
  .td-banner-inner { flex-direction: column; text-align: center; }
  .td-banner-right { flex-direction: column; gap: 8px; }
  .section-title { font-size: 32px; }
  .hero { padding: 48px 0 64px; }
  .hero-visual {
    height: auto;
    position: static;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .float-card { position: static; width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { flex-wrap: wrap; justify-content: center; }
}