:root {
  --orange: #ff6900;
  --orange-dark: #e55f00;
  --blue: #1a3a5c;
  --dark: #1a1a1a;
  --mid: #555;
  --light: #f5f5f5;
  --border: #e0e0e0;
  --white: #fff;
  --max-width: 1000px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 60px;
}
nav .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-right: auto;
}
nav .logo .logo-icon {
  background: var(--orange);
  color: white;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
nav .logo span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}
nav .nav-links { display: flex; align-items: center; gap: 1.5rem; }
nav .nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
nav .nav-links a:hover, nav .nav-links a.active { color: var(--dark); }
nav .nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--dark);
  background: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}
.btn-outline:hover { border-color: #aaa; }
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; }

/* HERO */
.hero {
  background: var(--white);
  color: var(--dark);
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.3rem; }
.hero .hero-sub { font-size: 1rem; font-weight: 600; color: var(--orange); margin-bottom: 0.75rem; }
.hero p { color: var(--mid); font-size: 1rem; max-width: 560px; margin: 0 auto 1.75rem; }

/* Search */
.search-wrap {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  position: relative;
}
.search-wrap input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: 0.95rem;
  outline: none;
  color: var(--dark);
}
.search-wrap input:focus { border-color: #aaa; }
.search-wrap .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
}

/* Search results */
.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
}
.search-result {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.1s;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--light); }
.search-result-type {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  width: 52px;
}
.search-result-title {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-desc { display: none; }
.search-empty {
  padding: 0.9rem;
  text-align: center;
  color: var(--mid);
  font-size: 0.825rem;
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn:hover { background: var(--orange-dark); }

/* CARDS GRID */
.section { padding: 3rem 2rem; max-width: var(--max-width); margin: 0 auto; }
.section h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.section h2 span { color: var(--orange); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.card .icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.card p { font-size: 0.875rem; color: var(--mid); flex: 1; }
.card { display: flex; flex-direction: column; }
.card-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.card-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}

/* PAGE CONTENT */
.page-header {
  background: var(--light);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid #e5e5e5;
}
.page-header h1 { font-size: 1.8rem; }
.page-header h1 span { color: var(--orange); }
.page-header p { color: var(--mid); margin-top: 0.4rem; }

.content { max-width: var(--max-width); margin: 0 auto; padding: 2.5rem 2rem; }

/* FAQ */
details {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}
details summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details summary::after { content: "+"; color: var(--orange); font-size: 1.2rem; }
details[open] summary::after { content: "−"; }
details p { padding: 0 1.25rem 1rem; color: var(--mid); }

/* VIDEO GRID */
.video-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.video-card .thumb {
  background: var(--dark);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.video-card .info { padding: 1rem; }
.video-card h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.video-card p { font-size: 0.8rem; color: var(--mid); }

/* TUTORIALS */
.tutorial-list { display: flex; flex-direction: column; gap: 1rem; }
.tutorial-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.15s;
}
.tutorial-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.tutorial-item .icon { font-size: 1.5rem; flex-shrink: 0; }
.tutorial-item h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.tutorial-item p { font-size: 0.85rem; color: var(--mid); }
.badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  background: var(--light);
  color: var(--mid);
}

/* HORIZONTAL TIMELINE */
.htl-wrap {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2rem;
  overflow-x: auto;
}
.htl-inner {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  min-width: 600px;
}
.htl-item {
  flex: 1;
  padding-right: 1.5rem;
}
.htl-last { padding-right: 0; }
.htl-top {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.htl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}
.htl-current .htl-dot {
  border-color: var(--orange);
  background: var(--orange);
}
.htl-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-left: 6px;
}
.htl-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.htl-current .htl-date { color: var(--orange); }
.tl-badge {
  background: var(--orange);
  color: white;
  font-size: 0.6rem;
  padding: 0.1rem 0.45rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.htl-item h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.htl-item p { font-size: 0.8rem; color: var(--mid); line-height: 1.5; }
.htl-note { margin-top: 0.4rem; font-size: 0.7rem; font-style: italic; color: #888; }
.htl-learn-more { display: inline-block; margin-top: 0.6rem; font-size: 0.78rem; font-weight: 600; color: var(--orange); text-decoration: none; }
.htl-learn-more:hover { text-decoration: underline; }
.htl-learn-more-center { display: block; text-align: center; }

/* VIDEO CARD (new card-style layout) */
.video-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 3rem; }

.video-card-new {
  display: flex;
  gap: 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.15s;
}
.video-card-new:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09); }

.video-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.video-card-body { flex: 1; }
.video-card-meta { font-size: 0.75rem; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 0.35rem; }
.video-card-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.video-card-body p { font-size: 0.875rem; color: var(--mid); margin-bottom: 0.9rem; }

.btn-watch {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.btn-watch:hover { background: var(--orange-dark); }

/* ASSOCIATED DOCUMENTS */
.assoc-docs { border-top: 1px solid var(--border); padding-top: 2rem; }
.assoc-docs h2 { font-size: 1.2rem; margin-bottom: 1rem; }

.assoc-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.assoc-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s;
}
.assoc-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.assoc-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.assoc-body { flex: 1; }
.assoc-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.assoc-desc { font-size: 0.825rem; color: var(--mid); }
.assoc-cta { flex-shrink: 0; font-size: 0.85rem; font-weight: 600; color: var(--orange); white-space: nowrap; }

/* INTERNAL BANNER */
#internal-banner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--blue);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
#internal-banner button {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
}
#internal-banner button:hover { background: rgba(255,255,255,0.25); }

/* INTERNAL MODAL */
#internal-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.internal-modal-box {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.internal-modal-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.internal-modal-sub { font-size: 0.875rem; color: var(--mid); margin-bottom: 1.25rem; }
.internal-modal-box input[type="password"] {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 0.5rem;
}
.internal-modal-box input[type="password"]:focus { border-color: #aaa; }
#internal-pwd-error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-bottom: 0.75rem;
}
.internal-modal-actions { display: flex; justify-content: flex-end; gap: 0.6rem; margin-top: 1rem; }
.internal-modal-actions button {
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
#internal-cancel-btn { background: var(--light); color: var(--dark); border: 1.5px solid var(--border); }
#internal-cancel-btn:hover { border-color: #aaa; }
#internal-submit-btn { background: var(--blue); color: white; }
#internal-submit-btn:hover { opacity: 0.9; }

/* Internal-only card indicator */
.card[data-internal="true"] { border-style: dashed; border-color: var(--blue); }
.card[data-internal="true"] .card-type-badge::after { content: " · Internal"; color: var(--blue); }

/* FOOTER internal trigger */
.footer-internal-link {
  color: #444;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.75rem;
}
.footer-internal-link:hover { color: #888; }

/* FEATURE TABLE */
.features-content { max-width: 960px; }

.features-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--mid);
}
.fl-item { display: flex; align-items: center; gap: 0.4rem; }
.fl-badge  { font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 4px; display: inline-block; }
.fl-available  { background: #d1fae5; color: #065f46; }
.fl-beta       { background: #fef3c7; color: #92400e; }
.fl-dev        { background: #e0e7ff; color: #3730a3; }
.fl-committed  { background: #e8f0fe; color: #2a5ab7; }
.fl-notplanned { background: var(--light); color: var(--mid); border: 1px solid var(--border); }
.fl-tag    { font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 99px; letter-spacing: 0.04em; }
.ft-ai     { background: #f0e8ff; color: #6b21a8; }
.ft-mobile { background: #e0f2fe; color: #0369a1; }
.ft-mlm    { background: #fef9c3; color: #854d0e; }

.features-filters { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.ff-group { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.ff-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mid); min-width: 48px; }
.ff-btn { font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 99px; border: 1px solid var(--border); background: var(--white); color: var(--mid); cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.ff-btn:hover { border-color: var(--orange); color: var(--orange); }
.ff-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }

.ft-section { margin-bottom: 2.5rem; }

.ft-section-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
  padding: 0.6rem 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}

.ft-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.ft-table thead th {
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.ft-table tbody tr { border-bottom: 1px solid #f0f0f0; }
.ft-table tbody tr:last-child { border-bottom: none; }
.ft-table tbody tr:hover { background: #fafafa; }
.ft-table td { padding: 0.85rem 0.75rem; vertical-align: middle; }

.ft-col-feature { width: auto; }
.ft-col-tag     { width: 80px; }
.ft-col-status  { width: 200px; text-align: center; white-space: nowrap; }
.ft-table thead th.ft-col-status { text-align: center; }

.ft-desc { font-size: 0.8rem; color: var(--mid); display: block; margin-top: 0.2rem; font-weight: 400; }

.ft-available, .ft-beta, .ft-dev, .ft-committed, .ft-notplanned { text-align: center; }
.ft-available::after  { content: "Available to all CX";        background: #d1fae5; color: #065f46; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 4px; }
.ft-beta::after       { content: "Available via Beta";         background: #fef3c7; color: #92400e; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 4px; }
.ft-dev::after        { content: "Development in Progress";    background: #e0e7ff; color: #3730a3; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 4px; }
.ft-committed::after  { content: "Committed";                  background: #e8f0fe; color: #2a5ab7; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 4px; }
.ft-notplanned::after { content: "Not Planned";                background: var(--light); color: var(--mid); font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 4px; border: 1px solid var(--border); }

/* TUTORIAL PAGE */
.tut-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem 2.5rem;
}
.tut-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.tut-back { font-size: 0.85rem; color: var(--mid); text-decoration: none; font-weight: 600; display: inline-block; margin-bottom: 1.25rem; }
.tut-back:hover { color: var(--dark); }
.tut-eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.6rem; }
.tut-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; line-height: 1.2; }
.tut-hero h1 span { color: var(--orange); }
.tut-hero p { color: var(--mid); font-size: 0.975rem; max-width: 560px; line-height: 1.65; }

.tut-body { max-width: var(--max-width); margin: 0 auto; padding: 2.5rem 2rem 4rem; display: flex; flex-direction: column; gap: 1.25rem; }

.tut-step {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tut-step-header { display: flex; gap: 1.25rem; align-items: flex-start; }

.tut-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--orange);
}

.tut-step-header h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.tut-step-header p { font-size: 0.875rem; color: var(--mid); line-height: 1.65; }

.tut-cta {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
}
.tut-cta:hover { background: var(--orange-dark); }

.tut-contacts { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.9rem; }
.tut-contact-label { font-size: 0.75rem; color: var(--mid); margin-top: 0.25rem; }
.tut-contact { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; color: var(--orange); text-decoration: none; }
.tut-contact:hover { text-decoration: underline; }
.tut-contact-icon { font-style: normal; }

.tut-note { font-size: 0.8rem; color: var(--mid); font-style: italic; margin-top: 0.75rem; }

.tut-screenshot { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.tut-screenshot img { width: 100%; display: block; }
.tut-screenshot-caption { font-size: 0.78rem; color: var(--mid); padding: 0.6rem 1rem; border-top: 1px solid var(--border); background: var(--light); }

.tut-screenshot-placeholder {
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.tut-screenshot-placeholder-inner {
  background: var(--light);
  padding: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--mid);
}

.tut-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.tut-banner-tip { background: #fffbeb; border: 1px solid #fde68a; color: #78350f; }
.tut-banner-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

.tut-done {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #166534;
}
.tut-done a { color: #16a34a; font-weight: 600; }
.tut-done-icon { font-size: 1.25rem; flex-shrink: 0; width: 32px; height: 32px; background: #16a34a; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; margin-top: 0.1rem; }

.tut-nav-footer { display: flex; padding-top: 0.5rem; }

/* LEARNING PATHS */
.lp-list { display: flex; flex-direction: column; gap: 2rem; }

.lp-track {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.lp-track-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.lp-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.lp-track-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.15rem; }
.lp-track-desc  { font-size: 0.825rem; color: var(--mid); }

.lp-steps { display: flex; flex-direction: column; }

.lp-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}
.lp-step:last-child { border-bottom: none; }
.lp-step:not(.lp-step-coming):hover { background: #fafafa; }

.lp-step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.lp-step-coming .lp-step-icon { opacity: 0.45; }

.lp-step-body { flex: 1; }
.lp-step-type  { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--mid); margin-bottom: 0.2rem; }
.lp-step-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
.lp-step-coming .lp-step-title { color: var(--mid); }
.lp-step-desc  { font-size: 0.825rem; color: var(--mid); }

.lp-step-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  background: var(--light);
  color: var(--mid);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.lp-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: #fffbeb;
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  font-size: 0.825rem;
  color: #78350f;
  line-height: 1.55;
}
.lp-note-icon { flex-shrink: 0; font-style: normal; font-weight: 700; margin-top: 0.05rem; }

.lp-step-cta {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
}

/* FAQ SECTIONS */
.faq-section { margin-bottom: 2.5rem; }
.faq-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
details p + p { margin-top: 0.5rem; }
details ul { padding-left: 1.25rem; margin-top: 0.5rem; }
details ul li { font-size: 0.875rem; color: var(--mid); margin-bottom: 0.3rem; }
details a { color: var(--orange); }

/* BETA SECTION HEADINGS (no step number) */
.beta-tldr { background: #fff8f0; border: 1px solid #fde2c8; border-left: 4px solid var(--orange); border-radius: 8px; padding: 1.1rem 1.25rem; margin-bottom: 2rem; }
.beta-tldr-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.6rem; }
.beta-tldr ul { margin: 0; padding-left: 1.2rem; }
.beta-tldr ul li { font-size: 0.875rem; color: var(--dark); line-height: 1.6; margin-bottom: 0.4rem; }
.beta-tldr ul li:last-child { margin-bottom: 0; }

.beta-section-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; }
.beta-section-sub { font-size: 0.875rem; color: var(--mid); margin-bottom: 1.25rem; }
.beta-search-wrap { position: relative; margin-bottom: 1rem; }
.beta-search-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); font-size: 0.9rem; pointer-events: none; }
.beta-search-wrap input { width: 100%; box-sizing: border-box; padding: 0.55rem 0.75rem 0.55rem 2.25rem; border: 1px solid var(--border); border-radius: 8px; font-size: 0.875rem; outline: none; }
.beta-search-wrap input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,92,0,0.08); }

/* BETA ACCESS GRID */
.beta-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .beta-access-grid { grid-template-columns: 1fr; } }
.beta-access-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.beta-access-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.beta-access-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange);
  margin-bottom: 0.2rem;
}
.beta-access-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.beta-access-body p { font-size: 0.85rem; color: var(--mid); margin-bottom: 0.6rem; }
.beta-access-body ul { padding-left: 1.1rem; }
.beta-access-body ul li { font-size: 0.82rem; color: var(--mid); margin-bottom: 0.2rem; }

/* BETA CUSTOMER TABLE */
.beta-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.beta-table thead th {
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mid);
  border-bottom: 2px solid var(--border);
}
.beta-table tbody tr { border-bottom: 1px solid #f0f0f0; }
.beta-table tbody tr:last-child { border-bottom: none; }
.beta-table tbody tr:hover { background: #fafafa; }
.beta-table td { padding: 0.85rem 0.75rem; vertical-align: top; }
.beta-locations { font-size: 0.8rem; color: var(--mid); }
.beta-access-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 4px; white-space: nowrap; }
.beta-access-sandbox { background: #dbeafe; color: #1e40af; }
.beta-access-prod { background: #d1fae5; color: #065f46; }
.beta-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
}
.beta-status-active     { background: #d1fae5; color: #065f46; }
.beta-status-onboarding { background: #fef3c7; color: #92400e; }
.beta-status-churned    { background: var(--light); color: var(--mid); border: 1px solid var(--border); }

/* FOOTER */
footer {
  background: var(--dark);
  color: #666;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  margin-top: 4rem;
}
