/* ==========================================================================
   Goodgent v4 Design System Stylesheet
   Design style matching https://www.goodgent.co/
   Warm architectural ivory ground (#faf9f5), dense obsidian typography (#111311),
   crisp white cards, hairline borders, and butter-lime accents.
   ========================================================================== */

:root {
  /* Ground & Surfaces */
  --bg-main:           #faf9f5;
  --bg-subtle:         #f2f1eb;
  --bg-card:           #ffffff;
  --card-border:       #e3e1d6;
  --card-border-hover: #c4c1b2;
  --line:              #e3e1d6;
  --line-strong:       #cfccc0;

  /* Typography & Ink */
  --ink:               #111311; /* Deep obsidian black */
  --ink-secondary:     #2b2e28;
  --warm:              #4e5149; /* Refined charcoal body */
  --muted:             #76786f; /* Muted annotations */
  --faint:             #9c9e96; /* Micro tags & placeholders */

  /* Brand Accents */
  --lime:              #f7ee92; /* Pale butter lime */
  --lime-hover:        #faea78;
  --lime-dim:          #fefcee;
  --lime-border:       #e2d56c;
  --lime-glow:         rgba(247, 238, 146, 0.4);

  /* Functional Status Accents */
  --green:             #1f8a55; /* Emerald mint */
  --green-bg:          #edf8f1;
  --orange:            #d97014;
  --orange-bg:         #fdf3e9;
  --blue:              #1b7ec2;
  --blue-soft:         #569bb0;

  /* Layout & Geometry */
  --max:               1240px;
  --radius-sm:         6px;
  --radius-md:         10px;
  --radius-lg:         14px;
  --radius-xl:         22px;
  --radius-pill:       9999px;

  /* Typography */
  --font-sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono:         'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

img, svg {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.mono {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--warm);
  letter-spacing: 0.03em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--warm);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Navigation Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  color: var(--ink);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--warm);
  font-size: 14.5px;
  font-weight: 500;
}

.navlinks a:not(.download):hover {
  color: var(--ink);
}

.download {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
}

.download:hover {
  background: #2b2e28;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
  padding: 4px;
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: all 0.18s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.btn:hover {
  background: #282b26;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: translateY(0);
}

.btn.dark {
  border: 1px solid #d5d3c8;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.btn.dark:hover {
  border-color: var(--ink);
  background: #faf9f5;
}

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

.btn.lime:hover {
  background: var(--lime-hover);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  text-align: center;
  padding: 84px 24px 0;
  position: relative;
}

.hero > .mono {
  display: inline-block;
  margin-bottom: 22px;
  line-height: 1.35;
  color: var(--warm);
  padding: 6px 14px;
  background: #f0eee6;
  border: 1px solid #e2e0d6;
  border-radius: 20px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 500;
  max-width: 1200px;
  margin: 0 auto 30px;
  color: var(--ink);
}

.hero h1 span {
  display: block;
  color: #4b4e47;
}

.hero .lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.52;
  max-width: 720px;
  color: var(--warm);
  margin: 0 auto;
  font-weight: 400;
}

.heroactions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 34px 0 64px;
}

/* --------------------------------------------------------------------------
   Showcase (Dual App: Telegram HITL + Web UI Deep Work PDF)
   -------------------------------------------------------------------------- */
.showcase-container {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.showcase-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #f2f1eb;
  border: 1px solid #e2e0d6;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
}

.session-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink);
  font-weight: 600;
}

.session-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.btn-replay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #d5d3c8;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  transition: all 0.15s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.btn-replay:hover {
  background: #faf9f5;
  border-color: var(--ink);
}

.showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #0e3029 0%, #1e4d3c 27%, #515c32 53%, #1b251d 100%);
  border: 1px solid #27372b;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 32px 24px 40px;
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 24% 62%, #61acbe 0, transparent 32%),
              radial-gradient(ellipse at 75% 20%, #9aaa50 0, transparent 38%),
              linear-gradient(180deg, transparent 40%, #191d18 100%);
  opacity: 0.65;
  pointer-events: none;
}

.dualapp {
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 20px;
}

/* Telegram Window Mockup */
.telegram {
  background: #151619;
  border: 1px solid #34363c;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tgbar {
  height: 44px;
  border-bottom: 1px solid #2d3035;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 12.5px;
  background: #191b1f;
}

.tgbar b {
  color: #8fc9ff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tgbar b::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50c487;
  box-shadow: 0 0 6px #50c487;
}

.tgbar span {
  margin-left: auto;
  color: #92939b;
  font-size: 11.5px;
}

.tgbody {
  padding: 16px;
  background: #17222b;
  flex: 1;
  font-size: 11.5px;
  line-height: 1.4;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tgday {
  text-align: center;
  color: #91a4b1;
  font: 9.5px var(--font-mono);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.tgmsg {
  background: #253b49;
  border-radius: 4px 12px 12px 12px;
  padding: 10px 12px;
  max-width: 92%;
  color: #eef4f5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.tgmsg.user {
  margin-left: auto;
  background: #2b5548;
  border-radius: 12px 4px 12px 12px;
  color: #ffffff;
}

.tgmsg b {
  font-weight: 600;
  color: #ffffff;
}

.tgmsg span {
  color: #d1dde0;
  display: inline-block;
  margin-top: 3px;
}

.tgmsg small {
  display: block;
  text-align: right;
  color: #8ca5ac;
  font-size: 9px;
  font-family: var(--font-mono);
  margin-top: 5px;
}

/* Telegram Native Inline Buttons for HITL Approval */
.tg-inline-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #364856;
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 8px;
}

.tg-draft-label {
  font-size: 9.5px;
  font-family: var(--font-mono);
  color: #8fa9b6;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.tg-draft-text {
  font-size: 11px;
  color: #f0f4f6;
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 10px;
}

.tg-keyboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.tg-btn {
  background: #2d485a;
  border: 1px solid #416277;
  color: #ffffff;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tg-btn:hover {
  background: #395c73;
}

.tg-btn.primary {
  background: #2f6b55;
  border-color: #428e72;
  color: #b7fedd;
  grid-column: span 2;
}

.tg-btn.primary:hover {
  background: #387c63;
}

.tg-status-banner {
  background: #1d4034;
  border: 1px solid #2f6b55;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  color: #a8f3d0;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

/* WebUI Deep Work / Research Interface */
.webui {
  background: #151619;
  border: 1px solid #34363c;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.webbar {
  height: 44px;
  border-bottom: 1px solid #2d3035;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 12px;
  background: #191b1f;
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e65e59;
}

.traffic i:nth-child(2) { background: #e6b44e; }
.traffic i:nth-child(3) { background: #61c76e; }

.webbar b {
  margin-left: 14px;
  font-weight: 500;
  color: #dcdde2;
  font-family: var(--font-mono);
  font-size: 11.5px;
}

.webbar .frontier-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(255, 243, 176, 0.1);
  border: 1px solid rgba(255, 243, 176, 0.25);
  color: #fff3b0;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.webbody {
  display: grid;
  grid-template-columns: 195px 1fr;
  flex: 1;
  background: #141518;
}

.webbody aside {
  border-right: 1px solid #27282e;
  padding: 18px 14px;
  color: #7d7f87;
  font-size: 11px;
  background: #111215;
}

.webbody aside strong {
  display: block;
  color: #eeeeee;
  font-size: 13.5px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.webbody aside small {
  display: block;
  color: #555760;
  font-size: 9px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  margin: 14px 0 6px;
  font-weight: 600;
}

.webbody aside span {
  display: block;
  padding: 6px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.webbody aside span:hover {
  color: #ddd;
  background: rgba(255,255,255,0.04);
}

.webbody aside span.active {
  background: #27292f;
  color: #ffffff;
  font-weight: 500;
}

.webmain {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.deep-work-prompt {
  background: #1c1e23;
  border: 1px solid #2d3038;
  border-radius: 8px;
  padding: 12px 14px;
}

.prompt-meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: #7e8391;
  margin-bottom: 4px;
}

.prompt-text {
  font-size: 12px;
  color: #e5e7ec;
  line-height: 1.45;
}

.execution-trace {
  background: #111215;
  border: 1px solid #22242a;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trace-title {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: #696e7c;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.trace-step {
  font-size: 11px;
  color: #a4a9b6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trace-step.done {
  color: #d1d5db;
}

.trace-step.done::before {
  content: '✓';
  color: #75d6a0;
  font-weight: 700;
}

/* PDF Deliverable Card */
.pdf-card {
  background: #191c22;
  border: 1px solid #373b45;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.pdf-icon-badge {
  width: 42px;
  height: 48px;
  background: #e6524b;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(230,82,75,0.4);
}

.pdf-details {
  flex: 1;
}

.pdf-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.pdf-sub {
  font-size: 11px;
  font-family: var(--font-mono);
  color: #8c919e;
  margin-top: 4px;
}

.btn-download-pdf {
  background: var(--lime);
  color: #090a09;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-download-pdf:hover {
  background: #fff9d8;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Section Common Styles
   -------------------------------------------------------------------------- */
.section {
  padding: 88px 24px;
  border-top: 1px solid var(--line);
}

.section.subtle {
  background: var(--bg-subtle);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-header h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--warm);
  font-size: 17px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Capability Cards (Think, Write, Prepare, Move)
   -------------------------------------------------------------------------- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.18s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.cap-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.cap-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.cap-card h3 {
  font-size: 18.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cap-card p {
  font-size: 13.5px;
  color: var(--warm);
  line-height: 1.52;
  margin-bottom: 18px;
  flex-grow: 1;
}

.cap-examples {
  list-style: none;
  padding: 12px 0 0;
  border-top: 1px solid #f0eee6;
  margin-top: auto;
}

.cap-examples li {
  font-size: 12.5px;
  color: var(--muted);
  padding: 3px 0;
}

.cap-examples li::before {
  content: '•';
  color: var(--ink);
  margin-right: 6px;
}

/* --------------------------------------------------------------------------
   Managed Agentic AI Differentiation Section (ChatGPT/Claude vs Goodgent)
   -------------------------------------------------------------------------- */
.diff-section {
  padding: 88px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-subtle);
}

.compare-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 36px;
}

.tool-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.tool-card.goodgent {
  border: 2px solid var(--ink);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.tool-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.tool-card.goodgent .tool-badge {
  color: var(--green);
}

.tool-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}

.tool-subtitle {
  font-size: 13.5px;
  color: var(--warm);
  margin-bottom: 20px;
}

.tool-list {
  list-style: none;
  padding: 16px 0 0;
  border-top: 1px solid #f0eee6;
  margin-top: auto;
}

.tool-list li {
  font-size: 13.5px;
  padding: 7px 0;
  color: var(--ink-secondary);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.45;
}

.tool-card.standard .tool-list li::before {
  content: '—';
  color: var(--muted);
  font-weight: 700;
}

.tool-card.goodgent .tool-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.diff-closing-banner {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  max-width: 680px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Example Work Section (3 Examples: Research, Report, Meeting Prep)
   -------------------------------------------------------------------------- */
.example-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.example-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.example-type {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.example-box {
  background: #f7f6f0;
  border: 1px solid #e6e4d8;
  border-radius: 8px;
  padding: 13px 15px;
  margin-bottom: 18px;
}

.box-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.box-text {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.48;
  font-style: italic;
}

.example-result h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.example-result ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-result li {
  font-size: 12.5px;
  color: var(--warm);
  padding: 3px 0;
}

.example-result li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 11.5px;
  margin-right: 7px;
}

/* --------------------------------------------------------------------------
   How Goodgent Works (4 Steps)
   -------------------------------------------------------------------------- */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.how-step-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background: var(--lime);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.how-step-card h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.how-step-card p {
  font-size: 13px;
  color: var(--warm);
  line-height: 1.5;
}

.closing-punchline {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Context Section (Built Around Your Work)
   -------------------------------------------------------------------------- */
.context-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.context-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  color: var(--ink);
}

.context-copy p {
  font-size: 16px;
  color: var(--warm);
  line-height: 1.6;
  margin-bottom: 12px;
}

.context-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.context-group {
  margin-bottom: 20px;
}

.context-group:last-child {
  margin-bottom: 0;
}

.context-group h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.context-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.context-group li {
  font-size: 13px;
  color: var(--warm);
  padding: 4px 0;
  display: flex;
  align-items: baseline;
}

.context-group li::before {
  content: '—';
  color: var(--muted);
  margin-right: 8px;
}

/* --------------------------------------------------------------------------
   Audience Cards (Who Goodgent is for)
   -------------------------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.audience-card h3 {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 13px;
  color: var(--warm);
  line-height: 1.48;
  margin-bottom: 14px;
}

.audience-card ul {
  list-style: none;
  padding: 12px 0 0;
  border-top: 1px solid #f0eee6;
  margin-top: auto;
}

.audience-card li {
  font-size: 12.5px;
  color: var(--ink-secondary);
  padding: 3px 0;
}

.audience-card li::before {
  content: '+';
  color: var(--green);
  font-weight: 700;
  margin-right: 6px;
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.pricing-card.featured {
  border: 2px solid var(--ink);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.founding-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--ink);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.plan-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 13.5px;
  color: var(--warm);
  margin-bottom: 14px;
}

.price-box {
  margin-bottom: 12px;
}

.price-val {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--ink);
  line-height: 1;
}

.price-val small {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.founding-text {
  font-size: 12.5px;
  color: var(--green);
  font-weight: 600;
  margin-top: 6px;
}

.plan-summary {
  font-size: 13.5px;
  color: var(--warm);
  line-height: 1.5;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 16px 0 0;
  border-top: 1px solid #eeece4;
  margin-top: auto;
  margin-bottom: 24px;
}

.pricing-card li {
  font-size: 13px;
  padding: 6px 0;
  color: var(--ink-secondary);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-card li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.managed-support-callout {
  max-width: 920px;
  margin: 28px auto 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  font-size: 13.5px;
  color: var(--warm);
  line-height: 1.5;
}

.managed-support-callout strong {
  color: var(--ink);
}

.guarantee-line {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Trust Section (Private by default)
   -------------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.trust-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 13.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.trust-item::before {
  content: '🔒';
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 14px;
  color: var(--warm);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta {
  padding: 96px 24px 110px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 18px;
  color: var(--warm);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 24px 36px;
  background: #f4f3ec;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2ded0;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--warm);
  max-width: 440px;
  line-height: 1.55;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--warm);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .capabilities-grid, .audience-grid, .how-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid, .example-work-grid, .context-layout, .compare-tools-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .navlinks {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav.menu-open .navlinks {
    display: flex;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .capabilities-grid, .audience-grid, .how-steps-grid, .example-work-grid {
    grid-template-columns: 1fr;
  }
  .heroactions {
    flex-direction: column;
  }
  .heroactions .btn {
    width: 100%;
  }
}
