:root {
  --yellow: #F5C400;
  --yellow-hover: #DDB200;
  --yellow-soft: rgba(245, 196, 0, 0.08);
  --yellow-mid: rgba(245, 196, 0, 0.15);
  --charcoal: #1A1A1A;
  --charcoal-mid: #2A2A2A;
  --charcoal-soft: #333;
  --text: #1A1A1A;
  --text-secondary: #555;
  --text-muted: #888;
  --bg: #F7F6F3;
  --bg-warm: #F0EFEC;
  --surface: #FFFFFF;
  --border: #E0E0E0;
  --border-light: #EBEBEB;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247, 246, 243, 0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
  text-decoration: none; display: flex; align-items: center;
}
.nav-logo-svg { height: 30px; width: auto; display: block; color: var(--charcoal); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after { content: ''; display: block; height: 2px; background: var(--yellow); border-radius: 2px; margin-top: 3px; }

.nav-cta-link {
  padding: 8px 20px; background: var(--charcoal); color: var(--surface) !important;
  border-radius: 999px; font-size: 0.8125rem !important; transition: background 0.15s, transform 0.15s;
}
.nav-cta-link:hover { background: var(--charcoal-soft); transform: translateY(-1px); }

.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--charcoal); margin: 4px 0; border-radius: 1px; }

.container { width: min(780px, 100%); margin: 0 auto; padding: 0 24px; }
.container-wide { width: min(1040px, 100%); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.label-tag {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); background: var(--yellow); padding: 4px 14px; border-radius: 999px; margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal);
}
.section-body { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; margin-top: 16px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; background: var(--yellow); color: var(--charcoal);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700; border: none;
  border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(245, 196, 0, 0.2);
}
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245, 196, 0, 0.25); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; background: transparent; color: var(--charcoal);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  border: 2px solid var(--border); border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--charcoal); transform: translateY(-1px); }

/* Hero */
.hero { padding: 140px 0 80px; text-align: center; }
.hero, .construction-grid {
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 40px);
  background-size: 40px 40px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.25rem); line-height: 1.05; letter-spacing: -0.03em;
  color: var(--charcoal); max-width: 700px; margin: 0 auto;
}
.ul { position: relative; }
.ul::after {
  content: ''; position: absolute; bottom: 0; left: -3px; right: -3px;
  height: 0.35em; background: var(--yellow); z-index: -1; transform: skewX(-1.5deg); border-radius: 2px;
}
.hero h1 .ul { white-space: normal; }
.hero h1 .ul::after { bottom: 2px; height: 0.32em; }
.founder-card .ul {
  background: linear-gradient(transparent 60%, rgba(245,196,0,0.25) 60%);
  padding: 0 2px;
}
.founder-card .ul::after { display: none; }
.hero-sub { font-size: 1.1875rem; color: var(--text-secondary); max-width: 600px; margin: 20px auto 0; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 16px; }

/* Hero trust strip · thin, greyscale, sits between hero and preview */
.hero-trust { padding: 28px 0 36px; border-top: 1px solid var(--border-light); }
.hero-trust-label { font-size: 0.75rem; letter-spacing: 0.04em; color: var(--text-muted); text-align: center; margin: 0 0 16px; }
.hero-trust-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 32px; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.8125rem; font-weight: 500; filter: grayscale(1); opacity: 0.65; transition: filter 0.2s ease, opacity 0.2s ease; }
.hero-trust-item:hover { filter: grayscale(0); opacity: 1; }
.hero-trust-item img, .hero-trust-item svg { width: 20px; height: 20px; object-fit: contain; }
.hero-trust-item img[src="logos/buildxact.png"] { filter: brightness(0); }

/* Product Preview */
.preview-caption {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 16px;
}
.preview-caption .label-tag { display: inline-block; margin-bottom: 14px; }
.preview-caption p {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin: 0;
}
.product-preview { padding: 8px 0 64px; display: flex; flex-direction: column; align-items: center; }
.preview-window {
  width: min(1040px, calc(100% - 48px)); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: 0 32px 80px rgba(26,26,26,0.12), 0 4px 16px rgba(26,26,26,0.06);
}
.preview-chrome {
  height: 44px; background: var(--bg); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 16px; gap: 8px;
}
.preview-dots { display: flex; gap: 6px; }
.preview-dots span { width: 10px; height: 10px; border-radius: 50%; }
.preview-dots span:nth-child(1) { background: #FF5F56; }
.preview-dots span:nth-child(2) { background: #FFBD2E; }
.preview-dots span:nth-child(3) { background: #27C93F; }
.preview-chrome-title {
  flex: 1; text-align: center; font-size: 0.8125rem; font-weight: 600;
  color: var(--text-muted); margin-right: 52px;
}
.preview-body { display: flex; height: 480px; }
.preview-sidebar {
  width: 200px; border-right: 1px solid var(--border-light); background: var(--bg);
  padding: 20px 0; flex-shrink: 0; display: flex; flex-direction: column;
}
.preview-sidebar-brand { padding: 0 16px 16px; }
.preview-sidebar-brand svg { height: 22px; color: var(--charcoal); display: block; }
.preview-sidebar-label {
  font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); padding: 12px 16px 8px;
}
.preview-project {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 16px; font-size: 0.8125rem; color: var(--text-secondary); cursor: default;
}
.preview-project.active { background: var(--surface); color: var(--charcoal); font-weight: 600; }
.preview-project-count {
  font-size: 0.5625rem; font-weight: 700; background: var(--yellow); color: var(--charcoal);
  padding: 2px 7px; border-radius: 999px; min-width: 18px; text-align: center;
}
.preview-sidebar-footer {
  margin-top: auto; padding: 16px; border-top: 1px solid var(--border-light);
}
.preview-sidebar-stat { display: flex; justify-content: space-between; font-size: 0.6875rem; color: var(--text-muted); padding: 3px 0; }
.preview-sidebar-stat strong { color: var(--charcoal); font-weight: 700; }
.preview-main { flex: 1; position: relative; overflow: hidden; }

/* Preview Scenes */
.pv-scene { position: absolute; inset: 0; opacity: 0; transition: none; padding: 28px; overflow-y: auto; }

/* Scene 1: Feed */
.pv-scene-feed { animation: pvFeed 20s ease infinite; }
.pv-feed-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.pv-feed-title { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--charcoal); }
.pv-feed-badge { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: var(--yellow); padding: 4px 12px; border-radius: 999px; color: var(--charcoal); }
.pv-feed-subtitle { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 20px; }
.pv-section-label { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; margin-top: 16px; }
.pv-section-label:first-of-type { margin-top: 0; }
.pv-feed-item {
  display: flex; gap: 12px; padding: 12px 14px; border-radius: 12px;
  align-items: flex-start; border: 1px solid transparent;
}
.pv-feed-item-highlight { animation: pvItemHighlight 20s ease infinite; }
.pv-feed-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.pv-dot-yellow { background: var(--yellow); }
.pv-dot-red { background: #E84335; }
.pv-dot-blue { background: #2B5CE6; }
.pv-dot-grey { background: #999; }
.pv-feed-item-content { flex: 1; }
.pv-feed-item-row { display: flex; align-items: center; gap: 8px; }
.pv-feed-item-title { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; }
.pv-feed-item-meta { font-size: 0.6875rem; color: var(--text-muted); margin-top: 2px; }
.pv-feed-tag {
  font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 999px; white-space: nowrap;
}
.pv-tag-approval { background: rgba(224,140,0,0.12); color: #C07800; }
.pv-tag-overdue { background: rgba(232,67,53,0.1); color: #C62828; }
.pv-tag-variation { background: rgba(43,92,230,0.1); color: #2B5CE6; }
.pv-tag-reply { background: rgba(100,100,100,0.1); color: #555; }
.pv-tag-followup { background: rgba(232,67,53,0.1); color: #C62828; }
.pv-feed-item-actions { margin-left: auto; display: flex; gap: 6px; flex-shrink: 0; }
.pv-mini-btn {
  font-size: 0.625rem; font-weight: 700; padding: 4px 10px; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.pv-mini-btn-primary { background: var(--yellow); color: var(--charcoal); }
.pv-mini-btn-secondary { background: var(--bg); color: var(--text-muted); }

/* Scene 2: Review */
.pv-scene-review { animation: pvReview 20s ease infinite; }
.pv-review-back { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 4px; }
.pv-review-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.pv-review-card {
  padding: 18px 20px; border: 1px solid var(--yellow); border-radius: 14px;
  background: rgba(245,196,0,0.04); margin-bottom: 24px;
}
.pv-review-tag { display: inline-block; font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 999px; background: rgba(224,140,0,0.12); color: #D08000; margin-bottom: 6px; }
.pv-review-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--charcoal); }
.pv-review-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.pv-plan-box { background: var(--bg); border-radius: 14px; padding: 20px; }
.pv-plan-label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
.pv-plan-steps { display: flex; flex-direction: column; gap: 14px; }
.pv-plan-item { display: flex; align-items: flex-start; gap: 12px; }
.pv-plan-num {
  width: 24px; height: 24px; border-radius: 50%; background: var(--yellow);
  font-size: 0.6875rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.pv-plan-text { flex: 1; }
.pv-plan-title { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; }
.pv-plan-detail { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }
.pv-review-actions { display: flex; gap: 10px; margin-top: 24px; }
.pv-btn {
  padding: 11px 28px; border-radius: 10px; font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; cursor: default;
}
.pv-btn-primary { background: var(--yellow); color: var(--charcoal); animation: pvBtnPress 20s ease infinite; }
.pv-btn-secondary { background: var(--surface); color: var(--text-muted); border: 1px solid var(--border); }

/* Scene 3: Working */
.pv-scene-working { animation: pvWorking 20s ease infinite; }
.pv-working-header { margin-bottom: 8px; }
.pv-working-label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.pv-working-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--charcoal); }
.pv-working-sub { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }
.pv-steps { display: flex; flex-direction: column; margin-top: 20px; }
.pv-step {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.pv-step:last-child { border-bottom: none; }
.pv-step-icon {
  width: 26px; height: 26px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.pv-step-done { background: #22C55E; }
.pv-step-done svg { width: 13px; height: 13px; stroke: white; stroke-width: 2.5; fill: none; }
.pv-step-active { background: var(--yellow); animation: pvPulseStep 1.2s ease infinite; }
.pv-step-active-dot { width: 7px; height: 7px; background: var(--charcoal); border-radius: 50%; }

/* Progressive step reveals in working scene */
.pv-scene-working .pv-step { opacity: 0; transform: translateY(12px); }
.pv-scene-working .pv-step:nth-child(1) { animation: pvWorking 20s ease infinite, pvStepIn1 20s ease infinite; }
.pv-scene-working .pv-step:nth-child(2) { animation: pvWorking 20s ease infinite, pvStepIn2 20s ease infinite; }
.pv-scene-working .pv-step:nth-child(3) { animation: pvWorking 20s ease infinite, pvStepIn3 20s ease infinite; }
@keyframes pvStepIn1 {
  0%, 52% { opacity: 0; transform: translateY(12px); }
  55% { opacity: 1; transform: translateY(0); }
  76% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; transform: translateY(12px); }
}
@keyframes pvStepIn2 {
  0%, 57% { opacity: 0; transform: translateY(12px); }
  60% { opacity: 1; transform: translateY(0); }
  76% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; transform: translateY(12px); }
}
@keyframes pvStepIn3 {
  0%, 62% { opacity: 0; transform: translateY(12px); }
  65% { opacity: 1; transform: translateY(0); }
  76% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; transform: translateY(12px); }
}
.pv-step-text { flex: 1; }
.pv-step-title { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; }
.pv-step-detail { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.pv-step-artifact {
  margin-top: 8px; padding: 10px 14px; border: 1px solid var(--border-light);
  border-radius: 10px; background: var(--bg); font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
}
.pv-step-artifact strong { color: var(--charcoal); }

/* Scene 4: Done */
.pv-scene-done {
  animation: pvDone 20s ease infinite;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.pv-done-check {
  width: 72px; height: 72px; border-radius: 50%; background: #22C55E;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  animation: pvDoneCheckPop 20s ease infinite;
}
@keyframes pvDoneCheckPop {
  0%, 75% { transform: scale(0); }
  78% { transform: scale(1.15); }
  80% { transform: scale(1); }
  94% { transform: scale(1); }
  98%, 100% { transform: scale(0); }
}
.pv-done-check svg { width: 36px; height: 36px; stroke: white; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pv-done-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--charcoal); margin-bottom: 16px; }
.pv-done-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pv-done-list li {
  font-size: 0.875rem; color: var(--text-secondary); display: flex; align-items: center;
  gap: 8px; justify-content: center;
}
.pv-done-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22C55E; flex-shrink: 0; }
.pv-done-sub { font-size: 0.8125rem; color: var(--text-muted); margin-top: 20px; }

/* Preview step indicator */
.preview-indicator {
  display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 24px;
}
.pv-ind { display: flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.pv-ind-num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--bg);
  border: 1.5px solid var(--border); font-size: 0.625rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pv-ind-connector { width: 24px; height: 1px; background: var(--border); }
.pv-ind-1 { animation: pvInd1 20s ease infinite; }
.pv-ind-1 .pv-ind-num { animation: pvIndNum1 20s ease infinite; }
.pv-ind-2 { animation: pvInd2 20s ease infinite; }
.pv-ind-2 .pv-ind-num { animation: pvIndNum2 20s ease infinite; }
.pv-ind-3 { animation: pvInd3 20s ease infinite; }
.pv-ind-3 .pv-ind-num { animation: pvIndNum3 20s ease infinite; }
.pv-ind-4 { animation: pvInd4 20s ease infinite; }
.pv-ind-4 .pv-ind-num { animation: pvIndNum4 20s ease infinite; }

/* Scene keyframes · 20s cycle */
@keyframes pvFeed {
  0%, 22% { opacity: 1; }
  26%, 94% { opacity: 0; }
  98%, 100% { opacity: 1; }
}
@keyframes pvReview {
  0%, 22% { opacity: 0; }
  26%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}
@keyframes pvWorking {
  0%, 48% { opacity: 0; }
  52%, 72% { opacity: 1; }
  76%, 100% { opacity: 0; }
}
@keyframes pvDone {
  0%, 72% { opacity: 0; }
  76%, 94% { opacity: 1; }
  98%, 100% { opacity: 0; }
}
@keyframes pvItemHighlight {
  0%, 14% { background: transparent; border-color: transparent; box-shadow: none; }
  16%, 21% { background: rgba(245,196,0,0.06); border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow); }
  23%, 100% { background: transparent; border-color: transparent; box-shadow: none; }
}
@keyframes pvBtnPress {
  0%, 42% { transform: scale(1); background: var(--yellow); }
  43% { transform: scale(1); background: var(--yellow-hover); }
  43.5% { transform: scale(0.94); background: var(--yellow-hover); }
  45% { transform: scale(1); background: var(--yellow); }
  100% { transform: scale(1); }
}
@keyframes pvPulseStep {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes pvInd1 {
  0%, 22% { color: var(--charcoal); }
  26%, 94% { color: var(--text-muted); }
  98%, 100% { color: var(--charcoal); }
}
@keyframes pvInd2 {
  0%, 22% { color: var(--text-muted); }
  26%, 48% { color: var(--charcoal); }
  52%, 100% { color: var(--text-muted); }
}
@keyframes pvInd3 {
  0%, 48% { color: var(--text-muted); }
  52%, 72% { color: var(--charcoal); }
  76%, 100% { color: var(--text-muted); }
}
@keyframes pvInd4 {
  0%, 72% { color: var(--text-muted); }
  76%, 94% { color: var(--charcoal); }
  98%, 100% { color: var(--text-muted); }
}
@keyframes pvIndNum1 {
  0%, 22% { background: var(--yellow); border-color: var(--yellow); }
  26%, 94% { background: var(--bg); border-color: var(--border); }
  98%, 100% { background: var(--yellow); border-color: var(--yellow); }
}
@keyframes pvIndNum2 {
  0%, 22% { background: var(--bg); border-color: var(--border); }
  26%, 48% { background: var(--yellow); border-color: var(--yellow); }
  52%, 100% { background: var(--bg); border-color: var(--border); }
}
@keyframes pvIndNum3 {
  0%, 48% { background: var(--bg); border-color: var(--border); }
  52%, 72% { background: var(--yellow); border-color: var(--yellow); }
  76%, 100% { background: var(--bg); border-color: var(--border); }
}
@keyframes pvIndNum4 {
  0%, 72% { background: var(--bg); border-color: var(--border); }
  76%, 94% { background: var(--yellow); border-color: var(--yellow); }
  98%, 100% { background: var(--bg); border-color: var(--border); }
}

/* Founder note */
.founder-note { padding: 96px 0; background: var(--bg); }
.founder-card {
  position: relative;
  max-width: 640px; margin: 0 auto; padding: 44px 40px 36px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  transition: translate 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.founder-card:hover {
  translate: 0 -3px;
  border-color: var(--yellow);
  box-shadow: 0 14px 32px -12px rgba(0,0,0,0.14);
}
.founder-card-badge {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
.founder-card p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.founder-card p strong { color: var(--charcoal); }
.founder-sig { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.founder-sig-identity { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.founder-sig-identity p { margin-bottom: 0; }
.founder-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; border: 1.5px solid var(--border); }
.founder-sig-handwritten {
  font-family: 'Caveat', cursive; font-size: 2.25rem; font-weight: 700;
  color: var(--charcoal); line-height: 1; margin-bottom: 4px;
  display: inline-block;
  clip-path: inset(0 100% -0.15em 0);
}
.founder-card.in-view .founder-sig-handwritten {
  animation: writeSignature 0.95s 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
@keyframes writeSignature {
  to { clip-path: inset(0 0 -0.15em 0); }
}
@media (prefers-reduced-motion: reduce) {
  .founder-sig-handwritten { clip-path: none; }
  .founder-card.in-view .founder-sig-handwritten { animation: none; }
}
.founder-sig-name { font-size: 0.9375rem; font-weight: 700; color: var(--charcoal); line-height: 1.4; }
.founder-sig-name a { color: var(--charcoal); text-decoration: none; background: linear-gradient(transparent 60%, rgba(245,196,0,0.3) 60%); padding: 0 2px; }
.founder-sig-name a:hover { background: linear-gradient(transparent 60%, rgba(245,196,0,0.5) 60%); }
.founder-sig-title { font-size: 0.8125rem; color: var(--text-muted); margin-top: -1px; }

/* Pain — pinned paper notes on a corkboard */
.pain {
  background: var(--charcoal);
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.028) 1px, transparent 1.5px);
  background-size: 26px 26px;
  color: var(--surface);
  padding: 96px 0 112px;
}
.pain .label-tag { background: var(--yellow); color: var(--charcoal); }
.pain .section-heading { color: var(--surface); }
.pain .section-body { color: rgba(255,255,255,0.55); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 36px;
  margin-top: 72px;
}

.pain-card {
  --rot: 0deg;
  position: relative;
  padding: 38px 30px 30px;
  background: #FAF7EE;
  border: none;
  border-radius: 3px;
  rotate: var(--rot);
  transition: rotate 0.4s cubic-bezier(0.2, 0.8, 0.3, 1), translate 0.4s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.4s ease;
  box-shadow:
    0 22px 40px -14px rgba(0,0,0,0.55),
    0 6px 14px rgba(0,0,0,0.28);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: -11px;
  width: 92px; height: 22px;
  background: linear-gradient(180deg, rgba(245,196,0,0.95), rgba(220,176,0,0.95));
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  border-radius: 1px;
}
.pain-card:nth-child(1) { --rot: -1.5deg; }
.pain-card:nth-child(1)::before { left: 28%; transform: translateX(-50%) rotate(-4deg); }
.pain-card:nth-child(2) { --rot: 0.9deg; }
.pain-card:nth-child(2)::before { left: 66%; transform: translateX(-50%) rotate(3deg); }
.pain-card:nth-child(3) { --rot: 0.7deg; }
.pain-card:nth-child(3)::before { left: 42%; transform: translateX(-50%) rotate(-2deg); }
.pain-card:nth-child(4) { --rot: -1.2deg; }
.pain-card:nth-child(4)::before { left: 62%; transform: translateX(-50%) rotate(4deg); }

.pain-card:hover {
  rotate: 0deg;
  translate: 0 -4px;
  box-shadow:
    0 26px 46px -12px rgba(0,0,0,0.55),
    0 8px 16px rgba(0,0,0,0.3);
}

.pain-icon { display: none; }

.pain-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.2; }
.pain-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }
.stats-strip { background: var(--yellow); padding: 0; }
.stats-row { display: flex; gap: 0; }
.stats-row > div { flex: 1; padding: 36px 24px; text-align: center; }
.stats-row > div + div { border-left: 1px solid rgba(26,26,26,0.1); }
.pain-stat-val { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--charcoal); line-height: 1; }
.pain-stat-lbl { font-size: 0.8125rem; color: rgba(26,26,26,0.6); margin-top: 6px; }


/* Work types · Reactive vs Proactive (dark framing beat with marquee streams) */
.work-types { padding: 96px 0; background: var(--charcoal); color: var(--surface); overflow: hidden; }
.work-types .label-tag { background: var(--yellow); color: var(--charcoal); }
.work-types .section-heading { color: var(--surface); }
.work-types .section-body { color: rgba(255,255,255,0.6); }
.work-types-intro { text-align: center; margin-bottom: 64px; }
.work-types-intro .section-heading { max-width: 640px; margin: 0 auto; }
.work-types-intro .section-body { max-width: 560px; margin: 12px auto 0; }

.work-stream { margin-bottom: 40px; }
.work-stream:last-child { margin-bottom: 0; }
.work-stream-header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.work-stream-desc { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--surface); line-height: 1.2; }

/* Reactive / Proactive tag — recognizable tilted pill threaded through the work sections */
.rp-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 6px;
  flex-shrink: 0;
}
.rp-tag.reactive { background: var(--charcoal); color: #FAF7EE; rotate: -2.5deg; }
.rp-tag.proactive { background: var(--yellow); color: var(--charcoal); rotate: 2.5deg; }
.work-types .rp-tag.reactive { background: #FAF7EE; color: var(--charcoal); }
.rp-eyebrow { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.rp-eyebrow-text {
  font-family: var(--font-display);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.hey-sam-text .rp-eyebrow-text { color: rgba(255,255,255,0.5); }

.work-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.work-marquee::before, .work-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.work-marquee::before { left: 0; background: linear-gradient(to right, var(--charcoal), transparent); }
.work-marquee::after { right: 0; background: linear-gradient(to left, var(--charcoal), transparent); }
.work-marquee-track {
  display: flex; gap: 12px; width: max-content;
  animation: workMarqueeL 80s linear infinite;
}
.work-marquee-track.reverse { animation: workMarqueeR 80s linear infinite; }
.work-marquee:hover .work-marquee-track { animation-play-state: paused; }

.work-chip {
  flex-shrink: 0;
  padding: 13px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
}
.work-chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0;
}
.work-stream.proactive-stream .work-chip {
  border-color: rgba(245,196,0,0.3);
  background: rgba(245,196,0,0.06);
}
.work-stream.proactive-stream .work-chip::before { background: var(--yellow); }

@keyframes workMarqueeL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes workMarqueeR {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .work-marquee-track { animation: none !important; transform: translateX(0) !important; }
  .work-marquee::before, .work-marquee::after { display: none; }
  .work-marquee { overflow-x: auto; }
}


/* Meet Sam — solution intro bridge (numbered manifesto) */
.meet-sam { padding: 96px 0; background: var(--bg); }
.meet-sam-intro { text-align: center; margin-bottom: 56px; }
.meet-sam-logo { display: block; width: 88px; height: auto; margin: 0 auto 20px; }
.meet-sam-intro .section-heading { max-width: 720px; margin: 0 auto; }
.meet-sam-intro .section-body { max-width: 600px; margin: 14px auto 0; }
.meet-sam-principles {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.meet-sam-principle {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.meet-sam-principle-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26,26,26,0.22);
  line-height: 1;
  position: relative;
  display: inline-block;
  transition: color 0.5s ease;
}
.meet-sam-principle-num::after {
  content: ''; position: absolute; left: -3px; right: -3px; bottom: 4px;
  height: 12px; background: var(--yellow); z-index: -1; opacity: 0;
  transform: skewX(-1.5deg); border-radius: 2px;
  transition: opacity 0.5s ease;
}
.meet-sam-principle.active .meet-sam-principle-num { color: var(--charcoal); }
.meet-sam-principle.active .meet-sam-principle-num::after { opacity: 0.55; }
.meet-sam-principle-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.meet-sam-principle-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
}
.meet-sam-principle-content p + p { margin-top: 10px; }
.meet-sam-principle-content p strong {
  color: var(--charcoal);
  font-weight: 700;
}
.meet-sam-coda {
  max-width: 580px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}


/* Actions section */
.actions-section { padding: 96px 0; background: var(--bg); }
.actions-intro { text-align: center; margin-bottom: 56px; }
.actions-intro .section-heading { max-width: 600px; margin: 0 auto; }
.actions-intro .section-body { max-width: 560px; margin: 12px auto 0; }
.action-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 112px; }
.action-block:nth-child(even) { direction: rtl; }
.action-block:nth-child(even) > * { direction: ltr; }
.action-block:last-child { margin-bottom: 0; }
.action-proof { border-left: 3px solid var(--yellow); padding: 16px 0 16px 20px; margin-top: 24px; font-size: 1.0625rem; font-weight: 600; color: var(--charcoal); line-height: 1.5; max-width: 600px; }
.action-number { font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.action-number .action-cat { background: linear-gradient(transparent 40%, rgba(245,196,0,0.3) 40%); padding: 0 3px; color: var(--charcoal); }
.action-text h3 { font-family: var(--font-display); font-size: 1.625rem; font-weight: 700; line-height: 1.15; color: var(--charcoal); margin-bottom: 12px; }
.action-text p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* Action block scroll animation: fade in from alternating sides.
   Counted within container-wide (intro at nth-child(1)), so 01/02/03 land at
   positions 2/3/4 — even (from left) / odd (from right) / even (from left). */
.action-block {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.3, 1);
  will-change: transform, opacity;
}
.action-block:nth-child(odd) { transform: translateX(80px); }
.action-block.in-view { opacity: 1; transform: translateX(0); }

/* Artifact cards */
.artifact { border: 1px solid var(--border); border-radius: 16px; background: var(--surface); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); font-size: 0.8125rem; }
.artifact-header { padding: 10px 16px; background: var(--yellow-soft); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text-secondary); }
.artifact-header .a-label { flex: 1; font-weight: 700; color: var(--charcoal); font-size: 0.8125rem; }
.artifact-status { font-size: 0.625rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; background: var(--bg); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.artifact-field { padding: 6px 16px; display: flex; gap: 8px; border-bottom: 1px solid var(--border-light); }
.artifact-field:last-child { border-bottom: none; }
.artifact-field-label { min-width: 50px; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); padding-top: 1px; }
.artifact-field-value { color: var(--charcoal); font-size: 0.8125rem; line-height: 1.5; }
.artifact-field-value.subject { font-weight: 700; }
.artifact-body { padding: 12px 16px; font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.6; white-space: pre-wrap; border-top: 1px solid var(--border-light); }
.artifact-footer { padding: 8px 16px; background: var(--yellow-soft); border-top: 1px solid var(--border-light); font-size: 0.6875rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.artifact-table { width: 100%; border-collapse: collapse; margin: 8px 0; font-size: 0.75rem; }
.artifact-table th { text-align: left; padding: 6px 12px; font-weight: 600; color: var(--text-muted); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.04em; background: var(--bg); border-bottom: 1px solid var(--border-light); }
.artifact-table td { padding: 6px 12px; border-bottom: 1px solid var(--border-light); color: var(--charcoal); }
.artifact-stack { display: flex; flex-direction: column; gap: 12px; }

/* Ask Sam — document recall: every document searchable, answers with their source */
.ask-section { padding: 96px 0; background: var(--bg); }
.ask-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 80px; align-items: center; }
.ask-text .label-tag { margin-bottom: 20px; display: inline-block; }
.ask-text h2 { font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.25rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--charcoal); margin-bottom: 16px; }
.ask-text > p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.ask-points { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.ask-point { display: flex; gap: 12px; align-items: flex-start; }
.ask-point-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--yellow); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ask-point-icon svg { width: 15px; height: 15px; color: var(--charcoal); }
.ask-point h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 3px; line-height: 1.25; }
.ask-point p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55; }

.ask-demo { display: flex; flex-direction: column; gap: 14px; }
.ask-query { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px 18px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.ask-query svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }
.ask-query span { font-size: 0.9375rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; }
.ask-answer .artifact-body strong { color: var(--charcoal); font-weight: 700; }
.ask-source { display: flex; align-items: center; gap: 10px; padding: 10px 16px; background: var(--yellow-soft); border-top: 1px solid var(--border-light); }
.ask-source svg { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }
.ask-source-name { font-size: 0.75rem; font-weight: 700; color: var(--charcoal); }
.ask-source-loc { font-size: 0.6875rem; color: var(--text-muted); margin-top: 1px; }
.ask-more { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.ask-more-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); width: 100%; margin-bottom: 2px; }
.ask-q-chip { font-size: 0.8125rem; color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border-light); border-radius: 999px; padding: 6px 13px; }
.ask-sources { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-top: 4px; }
.ask-sources-lead { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.ask-src-chip { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border-light); border-radius: 6px; padding: 4px 10px; }

@media (max-width: 860px) { .ask-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Yes grid */
/* What every Sam comes with — 10-item capability grid */
.yes-section { padding: 96px 0; background: var(--surface); }
.yes-intro { margin-bottom: 56px; }
.yes-intro .label-tag { margin-bottom: 16px; display: inline-block; }
.yes-section .section-heading { text-align: center; max-width: 720px; margin: 0 auto; }
.yes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 780px; margin: 0 auto; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: var(--surface); }
.yes-item { padding: 18px 24px; font-size: 0.9375rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-light); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; transition: background 0.15s; }
.yes-item:hover { background: var(--yellow-soft); }
.yes-item:nth-child(odd) { border-right: 1px solid var(--border-light); }
.yes-check { width: 20px; height: 20px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.yes-check svg { width: 12px; height: 12px; }

/* HEY Sam section */
.hey-sam-section { padding: 96px 0; background: var(--charcoal); color: var(--surface); }
.hey-sam-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
.hey-sam-text .label-tag { background: rgba(245,196,0,0.2); color: var(--yellow); }
.hey-sam-text h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--surface); margin-bottom: 16px; }
.hey-sam-text p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.hey-sam-text p:last-child { margin-bottom: 0; }
.sam-chat-window { border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; background: rgba(255,255,255,0.05); overflow: hidden; }
.sam-chat-header { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; }
.sam-chat-header-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; animation: samHeaderPulse 2.4s ease-in-out infinite; }
.sam-chat-header-name { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.sam-chat-body { padding: 20px; display: flex; flex-direction: column; min-height: 420px; }
.sam-msg { display: flex; flex-direction: column; max-width: 88%; margin-bottom: 14px; }
.sam-msg:last-child { margin-bottom: 0; }
.sam-msg-user { align-self: flex-end; align-items: flex-end; }
.sam-msg-sam { align-self: flex-start; align-items: flex-start; }
.sam-bubble { padding: 10px 14px; border-radius: 16px; font-size: 0.8125rem; line-height: 1.5; }
.sam-msg-user .sam-bubble { background: var(--yellow); color: var(--charcoal); border-bottom-right-radius: 4px; font-weight: 600; }
.sam-msg-sam .sam-bubble { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.88); border-bottom-left-radius: 4px; }
.sam-activity { font-size: 0.6875rem; color: rgba(255,255,255,0.38); padding: 2px 4px; display: flex; align-items: center; gap: 6px; }
.sam-activity::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); display: inline-block; opacity: 0.6; }
.sam-quote-card { border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; overflow: hidden; margin-top: 6px; width: 100%; }
.sam-quote-card-header { padding: 8px 14px; background: rgba(245,196,0,0.15); border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; font-weight: 700; color: var(--yellow); }
.sam-quote-line { padding: 7px 14px; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; font-size: 0.75rem; }
.sam-quote-name { color: rgba(255,255,255,0.75); }
.sam-quote-source { font-size: 0.625rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.sam-quote-price { color: var(--surface); font-weight: 700; flex-shrink: 0; }
.sam-quote-total { padding: 8px 14px; background: rgba(255,255,255,0.06); display: flex; justify-content: space-between; font-size: 0.8125rem; font-weight: 700; color: var(--surface); }
.sam-chat-input { padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 10px; align-items: center; }
.sam-chat-input-field { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 8px 16px; font-size: 0.8125rem; color: rgba(255,255,255,0.38); font-family: var(--font-body); }
.sam-chat-send { width: 32px; height: 32px; border-radius: 50%; background: var(--yellow); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* HEY Sam — animated demo loop (13s) */
.sam-chat-window.animated .anim-user-msg,
.sam-chat-window.animated .anim-activity-a,
.sam-chat-window.animated .anim-activity-b,
.sam-chat-window.animated .anim-quote,
.sam-chat-window.animated .anim-ready,
.sam-chat-window.animated .anim-sent {
  opacity: 0; max-height: 0; margin-bottom: 0; overflow: hidden;
}
.sam-chat-window.animated .anim-user-msg { animation: samUserMsg 13s 0.4s infinite cubic-bezier(0.2,0.8,0.3,1); }
.sam-chat-window.animated .anim-activity-a { animation: samActA 13s 0.4s infinite ease-out; }
.sam-chat-window.animated .anim-activity-b { animation: samActB 13s 0.4s infinite ease-out; }
.sam-chat-window.animated .anim-quote { animation: samQuote 13s 0.4s infinite cubic-bezier(0.2,0.8,0.3,1); }
.sam-chat-window.animated .anim-ready { animation: samReady 13s 0.4s infinite cubic-bezier(0.2,0.8,0.3,1); }
.sam-chat-window.animated .anim-sent { animation: samSent 13s 0.4s infinite cubic-bezier(0.2,0.8,0.3,1); }
.sam-chat-window.animated .sam-chat-send { animation: samSendPulse 13s 0.4s infinite ease-out; }
.sam-chat-window.animated .sam-chat-input-field { animation: samInputState 13s 0.4s infinite steps(1,end); }

@keyframes samHeaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes samUserMsg {
  0%, 4% { opacity: 0; transform: translateY(8px); max-height: 0; margin-bottom: 0; }
  10%, 92% { opacity: 1; transform: translateY(0); max-height: 80px; margin-bottom: 14px; }
  97%, 100% { opacity: 0; max-height: 0; margin-bottom: 0; }
}

@keyframes samActA {
  0%, 12% { opacity: 0; max-height: 0; margin-bottom: 0; }
  16%, 26% { opacity: 1; max-height: 30px; margin-bottom: 14px; }
  30%, 100% { opacity: 0; max-height: 0; margin-bottom: 0; }
}

@keyframes samActB {
  0%, 30% { opacity: 0; max-height: 0; margin-bottom: 0; }
  34%, 44% { opacity: 1; max-height: 30px; margin-bottom: 14px; }
  48%, 100% { opacity: 0; max-height: 0; margin-bottom: 0; }
}

@keyframes samQuote {
  0%, 46% { opacity: 0; transform: translateY(10px); max-height: 0; margin-bottom: 0; }
  54%, 92% { opacity: 1; transform: translateY(0); max-height: 280px; margin-bottom: 14px; }
  97%, 100% { opacity: 0; max-height: 0; margin-bottom: 0; }
}

@keyframes samReady {
  0%, 60% { opacity: 0; max-height: 0; margin-bottom: 0; transform: translateY(6px); }
  66%, 78% { opacity: 1; max-height: 60px; margin-bottom: 14px; transform: translateY(0); }
  82%, 100% { opacity: 0; max-height: 0; margin-bottom: 0; }
}

@keyframes samSent {
  0%, 81% { opacity: 0; max-height: 0; margin-bottom: 0; transform: scale(0.9); }
  86%, 94% { opacity: 1; max-height: 60px; margin-bottom: 0; transform: scale(1); }
  98%, 100% { opacity: 0; max-height: 0; margin-bottom: 0; }
}

@keyframes samSendPulse {
  0%, 75% { box-shadow: 0 0 0 0 rgba(245,196,0,0); transform: scale(1); }
  77% { box-shadow: 0 0 0 0 rgba(245,196,0,0.6); transform: scale(1.05); }
  81% { box-shadow: 0 0 0 10px rgba(245,196,0,0); transform: scale(1.05); }
  83% { transform: scale(0.92); }
  86%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,196,0,0); }
}

@keyframes samInputState {
  0%, 81% { color: rgba(255,255,255,0.38); }
  83%, 100% { color: rgba(255,255,255,0.18); }
}

.sam-sent-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34, 197, 94, 0.15); color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 6px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
}
.sam-sent-badge svg { width: 12px; height: 12px; }
.sam-activity-thinking { display: inline-flex; align-items: center; gap: 4px; margin-left: 6px; }
.sam-activity-thinking span { width: 3px; height: 3px; border-radius: 50%; background: var(--yellow); display: inline-block; animation: samDot 1.2s infinite ease-in-out; }
.sam-activity-thinking span:nth-child(2) { animation-delay: 0.18s; }
.sam-activity-thinking span:nth-child(3) { animation-delay: 0.36s; }
@keyframes samDot {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}
@media (max-width: 860px) { .hey-sam-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Handled strip — work items ticked off, scrolling like the work streams */
.handled-strip { margin-top: 72px; }
.handled-strip-lead {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 22px;
  text-align: center;
}
.hey-sam-section .handled-strip-lead { color: var(--surface); }

.handled-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.handled-marquee::before, .handled-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.handled-marquee::before { left: 0; }
.handled-marquee::after { right: 0; }
.actions-section .handled-marquee::before { background: linear-gradient(to right, var(--bg), transparent); }
.actions-section .handled-marquee::after { background: linear-gradient(to left, var(--bg), transparent); }
.hey-sam-section .handled-marquee::before { background: linear-gradient(to right, var(--charcoal), transparent); }
.hey-sam-section .handled-marquee::after { background: linear-gradient(to left, var(--charcoal), transparent); }

.handled-marquee-track {
  display: flex; gap: 9px; width: max-content;
  animation: handledMarqueeL 58s linear infinite;
}
.handled-marquee-track.reverse { animation: handledMarqueeR 58s linear infinite; }
.handled-marquee:hover .handled-marquee-track { animation-play-state: paused; }
@keyframes handledMarqueeL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes handledMarqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.handled-chip {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px;
  font-size: 0.8125rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}
.handled-chip .handled-tick { width: 12px; height: 12px; flex-shrink: 0; }
.handled-chip .txt { text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.25); }
.hey-sam-section .handled-chip {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}
.hey-sam-section .handled-chip .txt { text-decoration-color: rgba(255,255,255,0.3); }

/* When the handled-strip is nested inside the hey-sam-text column, constrain the
   marquee to the column width instead of breaking out to 100vw. */
.hey-sam-text .handled-strip { margin-top: 28px; text-align: left; }
.hey-sam-text .handled-strip-lead { text-align: left; }
.hey-sam-text .handled-marquee { width: 100%; margin-left: 0; }
.hey-sam-text .handled-marquee::before,
.hey-sam-text .handled-marquee::after { width: 50px; }

@media (prefers-reduced-motion: reduce) {
  .handled-marquee-track { animation: none !important; transform: translateX(0) !important; }
  .handled-marquee::before, .handled-marquee::after { display: none; }
  .handled-marquee { overflow-x: auto; }
}

/* Footing band — sister product reveal, sits after HEY Sam (buttermilk yellow) */
.footing-band {
  background: #FFFA77;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footing-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.footing-visual {
  position: relative;
  padding: 12px;
}
.footing-window {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 48px -16px rgba(0,0,0,0.22),
    0 8px 20px -8px rgba(0,0,0,0.16);
  transform: rotate(-1deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.footing-window:hover { transform: rotate(0deg) translateY(-4px); }
.footing-window-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #F4F1E8;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footing-window-chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(0,0,0,0.14);
}
.footing-window-chrome span:first-child { background: #FF5F57; }
.footing-window-chrome span:nth-child(2) { background: #FEBC2E; }
.footing-window-chrome span:nth-child(3) { background: #28C840; }
.footing-window-chrome-title {
  flex: 1; text-align: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.45);
  width: auto !important; height: auto !important; background: transparent !important; border-radius: 0 !important;
}
.footing-window img.footing-shot {
  display: block; width: 100%; height: auto;
}
.footing-window-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--charcoal);
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.35);
}
.footing-window-badge img {
  height: 34px; width: auto; display: block;
}
.footing-content { padding: 0 8px; }
.footing-band-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: #FFFA77;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.footing-band-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FFFA77;
  display: inline-block;
  animation: footingPulse 1.8s ease-in-out infinite;
}
@keyframes footingPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.footing-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 520px;
}
.footing-band p {
  font-size: 1rem;
  color: rgba(0,0,0,0.78);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 14px;
}
.footing-band p strong { color: var(--charcoal); font-weight: 700; }
.footing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: #FFFA77;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  margin-top: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.footing-cta:hover { transform: translateY(-2px); background: #000; }
.footing-cta svg { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .footing-grid { grid-template-columns: 1fr; gap: 32px; }
  .footing-visual img { max-width: 220px; }
  .footing-band { padding: 72px 0; }
}


/* ROI stripe — money line between capability and onboarding */
.roi-stripe {
  background: var(--yellow);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.roi-stripe-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.roi-stripe-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 18px;
}
.roi-stripe-line {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.6vw, 2.5rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: 880px;
}
.roi-stripe-line .roi-accent {
  display: inline-block;
  position: relative;
}
.roi-stripe-line .roi-accent::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px; bottom: 4px;
  height: 10px;
  background: rgba(26,26,26,0.18);
  z-index: -1;
  border-radius: 2px;
}

/* How */
.how { padding: 96px 0; background: var(--bg); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.how-step {
  text-align: center; display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.how-steps.in-view .how-step { opacity: 1; transform: translateY(0); }
.how-steps.in-view .how-step:nth-child(1) { transition-delay: 0.1s; }
.how-steps.in-view .how-step:nth-child(2) { transition-delay: 0.3s; }
.how-steps.in-view .how-step:nth-child(3) { transition-delay: 0.5s; }
.how-num { width: 56px; height: 56px; border-radius: 50%; background: var(--charcoal); color: var(--yellow); font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.how-step h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 0.9375rem; color: var(--text-secondary); max-width: 260px; }


/* Inside Sam — laptop + phone device frames showing where Sam runs */
.inside-sam { padding: 96px 0 112px; background: var(--surface); overflow: hidden; }
.inside-sam-intro { text-align: center; margin-bottom: 64px; }
.inside-sam-intro .section-heading { max-width: 760px; margin: 0 auto; }
.inside-sam-intro .section-body { max-width: 560px; margin: 14px auto 0; }

.inside-sam-devices {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

/* Laptop */
.device-laptop {
  flex: 1;
  max-width: 580px;
  position: relative;
}
.device-laptop-frame {
  background: #1A1A1A;
  padding: 14px 14px 10px;
  border-radius: 14px 14px 6px 6px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.32), 0 8px 18px -6px rgba(0,0,0,0.18);
}
.device-laptop-screen {
  background: var(--bg);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.device-laptop-base {
  margin: 0 -7% 0;
  height: 16px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  border-radius: 0 0 18px 18px;
  position: relative;
}
.device-laptop-base::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 8px;
  background: #0F0F0F;
  border-radius: 0 0 8px 8px;
}

/* Phone */
.device-phone {
  flex-shrink: 0;
  width: 170px;
  margin-left: -52px;
  margin-bottom: 32px;
  z-index: 2;
  position: relative;
}
.device-phone-frame {
  background: #1A1A1A;
  padding: 8px;
  border-radius: 28px;
  box-shadow: 0 22px 40px -14px rgba(0,0,0,0.4), 0 6px 14px rgba(0,0,0,0.22);
}
.device-phone-screen {
  background: var(--charcoal);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.device-phone-notch {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 16px;
  background: #1A1A1A;
  border-radius: 0 0 10px 10px;
  z-index: 1;
}

/* Inside laptop: browser chrome + priority feed */
.laptop-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: #ECE7DA;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.laptop-chrome span {
  width: 9px; height: 9px; border-radius: 50%;
}
.laptop-chrome span:nth-child(1) { background: #FF5F57; }
.laptop-chrome span:nth-child(2) { background: #FEBC2E; }
.laptop-chrome span:nth-child(3) { background: #28C840; }
.laptop-chrome-tab {
  flex: 1; text-align: center;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(0,0,0,0.45);
}
.laptop-content {
  padding: 18px 20px;
  min-height: 280px;
  display: flex; flex-direction: column; gap: 10px;
}

/* Inside phone: top bar + chat */
.phone-statusbar {
  height: 26px;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 14px 4px;
  font-size: 0.5625rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.phone-content {
  padding: 8px 12px 14px;
  display: flex; flex-direction: column; gap: 7px;
  min-height: 250px;
}

/* Caption block under the devices */
.inside-sam-caption {
  text-align: center;
  margin-top: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.inside-sam-caption-line {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

/* Job map */
.job-map { padding: 96px 0; background: var(--charcoal); color: var(--surface); overflow: hidden; }
.job-map .label-tag { background: var(--yellow); color: var(--charcoal); }
.job-map .section-heading { color: var(--surface); }
.job-map .section-body { color: rgba(255,255,255,0.6); }
.job-map-intro { text-align: center; max-width: 720px; margin: 0 auto; }
.job-map-intro .section-body { max-width: 620px; margin: 14px auto 0; }

.job-map-canvas {
  margin-top: 56px;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
}

.jm-layer-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}

.jm-people, .jm-projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.jm-person {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 12px 14px;
}
.jm-person-photo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.jm-person-text { display: flex; flex-direction: column; line-height: 1.3; }
.jm-person-text strong { font-size: 0.9375rem; color: var(--surface); }
.jm-person-text span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.jm-connector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 10px 0; }
.jm-connector span { width: 2px; height: 22px; margin: 0 auto; background: linear-gradient(rgba(255,255,255,0.28), rgba(255,255,255,0.04)); border-radius: 2px; }

.jm-project {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px;
}
.jm-project-name { font-weight: 600; font-size: 0.9375rem; color: var(--surface); }
.jm-project-owner { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.jm-layer-pipeline { margin-top: 28px; }
.jm-track {
  position: relative;
  display: flex; justify-content: space-between; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 36px 18px 18px;
}
.jm-stage { flex: 1; text-align: center; }
.jm-stage span {
  display: inline-block; font-size: 0.8125rem; font-weight: 600; white-space: nowrap;
  color: rgba(255,255,255,0.65); background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 6px 10px;
}

.jm-token {
  position: absolute; top: 9px; left: 8%;
  display: flex; align-items: center; gap: 6px;
  animation: jmAdvance 13s cubic-bezier(0.65,0,0.35,1) infinite;
}
.jm-token-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(245,196,0,0.2); }
.jm-token-sam {
  font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); white-space: nowrap;
}

@keyframes jmAdvance {
  0%   { left: 8%;  opacity: 0; }
  4%   { opacity: 1; }
  16%  { left: 8%; }
  18%  { left: 24%; }
  32%  { left: 24%; }
  34%  { left: 41%; }
  48%  { left: 41%; }
  50%  { left: 57%; }
  64%  { left: 57%; }
  66%  { left: 72%; }
  80%  { left: 72%; }
  82%  { left: 87%; }
  96%  { left: 87%; opacity: 1; }
  100% { left: 87%; opacity: 0; }
}

.jm-track-caption {
  margin-top: 16px; text-align: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
}

@media (max-width: 600px) {
  .job-map-canvas { padding: 22px; }
  .jm-people, .jm-projects { grid-template-columns: 1fr; }
  .jm-connector { display: none; }
  .jm-projects { margin-top: 20px; }
  .jm-track { gap: 4px; padding: 34px 12px 16px; }
  .jm-stage span { font-size: 0.6875rem; padding: 5px 6px; }
  .jm-token-sam { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .jm-token { animation: none; left: 41%; opacity: 1; }
}

/* Inner-page hero */
.page-hero { padding: 140px 0 64px; text-align: center; }
.page-hero .label-tag { margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--charcoal); max-width: 820px; margin: 0 auto;
}
.page-hero p { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; max-width: 620px; margin: 18px auto 0; }
.page-hero-actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Onboarding deep-dive */
.onboarding { padding: 96px 0; background: var(--charcoal); color: var(--surface); }
.onboarding .label-tag { background: var(--yellow); color: var(--charcoal); }
.onboarding .section-heading { color: var(--surface); }
.onboarding .section-body { color: rgba(255,255,255,0.6); }
.onboarding-intro { text-align: center; max-width: 720px; margin: 0 auto; }
.onboarding-intro .section-body { max-width: 600px; margin: 14px auto 0; }
.onboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.onboard-card { background: var(--charcoal-mid); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px 24px; }
.onboard-card-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--yellow); }
.onboard-card h3 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--surface); margin: 10px 0 8px; line-height: 1.15; }
.onboard-card > p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.onboard-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.onboard-list li { position: relative; padding-left: 20px; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.onboard-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
@media (max-width: 860px) { .onboard-grid { grid-template-columns: 1fr; } }

/* In-practice teaser (homepage) */
.practice-teaser { padding: 96px 0; }
.practice-teaser-intro { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.practice-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.practice-teaser-card {
  display: block; text-decoration: none; background: var(--surface);
  border: 1px solid var(--border-light); border-radius: 16px; padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.practice-teaser-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,26,26,0.08); border-color: rgba(26,26,26,0.16); }
.practice-teaser-card .rp-tag { display: inline-block; margin-bottom: 14px; }
.practice-teaser-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); line-height: 1.12; margin-bottom: 8px; }
.practice-teaser-card > p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }
.practice-teaser-link { display: inline-block; margin-top: 16px; font-weight: 600; font-size: 0.9375rem; color: var(--charcoal); }
.practice-teaser-foot { text-align: center; margin-top: 40px; }
@media (max-width: 700px) { .practice-teaser-grid { grid-template-columns: 1fr; } }

/* Where Sam helps — scenarios */
.scenarios { padding: 80px 0 96px; }
.scenario-list { display: flex; flex-direction: column; gap: 24px; max-width: 920px; margin: 0 auto; }
.scenario {
  display: grid; grid-template-columns: 240px 1fr; gap: 32px;
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: 18px; padding: 32px 34px; align-items: start;
}
.scenario-moment { display: flex; flex-direction: column; gap: 8px; }
.scenario-moment-tag {
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700;
  letter-spacing: 0.01em; color: var(--charcoal); line-height: 1.15;
  background: var(--yellow); align-self: flex-start; padding: 6px 12px; border-radius: 8px; rotate: -1.5deg;
}
.scenario-time { font-family: var(--font-mono, 'IBM Plex Sans'); font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.02em; }
.scenario-body h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); line-height: 1.15; margin-bottom: 14px; }
.scenario-pain { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.scenario-fix { font-size: 0.9375rem; color: var(--charcoal); line-height: 1.6; padding-left: 16px; border-left: 3px solid var(--yellow); }
.scenario-fix-tag { font-weight: 700; color: var(--charcoal); }
.scenarios-cta { padding: 0 0 96px; text-align: center; }
.scenarios-cta-line { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); max-width: 560px; margin: 0 auto 24px; line-height: 1.2; }
@media (max-width: 720px) {
  .scenario { grid-template-columns: 1fr; gap: 18px; padding: 26px 24px; }
  .scenario-moment { flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; }
}

/* Booking page */
.booking-host-title a { color: var(--charcoal); text-decoration: none; background: linear-gradient(transparent 60%, rgba(245,196,0,0.3) 60%); padding: 0 2px; transition: background 0.15s; }
.booking-host-title a:hover { background: linear-gradient(transparent 60%, rgba(245,196,0,0.5) 60%); }
.booking-hero { padding: 120px 0 56px; text-align: center; background: var(--bg); }
.booking-tag { display: inline-block; font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); background: var(--yellow); padding: 4px 14px; border-radius: 999px; margin-bottom: 20px; }
.booking-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--charcoal); max-width: 640px; margin: 0 auto 16px; }
.booking-hero p { font-size: 1.0625rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto; }
.booking-calendar { background: var(--surface); }
.booking-reassure { background: var(--bg); padding: 56px 0; text-align: center; }
.booking-reassure p { font-size: 0.9375rem; color: var(--text-muted); max-width: 400px; margin: 0 auto; }
.booking-reassure a { color: var(--charcoal); font-weight: 600; }
.booking-host { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.booking-host-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; border: 1.5px solid var(--border); }
.booking-host-info { text-align: left; }
.booking-host-name { font-size: 0.9375rem; font-weight: 600; color: var(--charcoal); line-height: 1.2; }
.booking-host-title { font-size: 0.8125rem; color: var(--text-muted); }
@media (max-width: 480px) { .booking-hero { padding: 100px 0 40px; } }

/* Pricing (stub) */
.pricing-maths { padding: 0 0 64px; }
.pricing-maths-card { max-width: 720px; margin: 0 auto; background: var(--charcoal); border-radius: 18px; padding: 40px 44px; text-align: center; }
.pricing-maths-label { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.pricing-maths-line { font-family: var(--font-display); font-size: 1.625rem; font-weight: 700; color: #FAF7EE; line-height: 1.25; }
.pricing-soon { padding: 64px 0 96px; text-align: center; }
.pricing-soon-inner { max-width: 600px; margin: 0 auto; }
.pricing-soon-inner .btn-primary { margin-top: 24px; }
@media (max-width: 600px) { .pricing-maths-card { padding: 32px 24px; } .pricing-maths-line { font-size: 1.375rem; } }

/* Mini feed (view 1) */
.mini-feed-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.mini-feed-title { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700; color: var(--charcoal); }
.mini-feed-count { font-size: 0.625rem; font-weight: 700; padding: 2px 6px; background: var(--yellow); color: var(--charcoal); border-radius: 4px; }
.mini-feed-sub { font-size: 0.625rem; color: var(--text-muted); margin-bottom: 8px; }
.mini-feed-item {
  display: flex; gap: 8px; padding: 8px;
  background: var(--surface); border: 1px solid var(--border-light); border-radius: 7px;
}
.mini-feed-item.highlight { border-color: var(--yellow); background: rgba(245,196,0,0.06); }
.mini-feed-dot { width: 5px; height: 5px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.mini-feed-dot.yellow { background: var(--yellow); }
.mini-feed-dot.red { background: #E74C3C; }
.mini-feed-dot.blue { background: #4285F4; }
.mini-feed-item-text { flex: 1; min-width: 0; }
.mini-feed-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 5px; border-radius: 3px;
  margin-bottom: 3px;
}
.mini-feed-tag.approval { background: var(--yellow); color: var(--charcoal); }
.mini-feed-tag.overdue { background: rgba(231,76,60,0.18); color: #C0392B; }
.mini-feed-tag.variation { background: rgba(66,133,244,0.18); color: #2156A8; }
.mini-feed-line { font-size: 0.6875rem; color: var(--charcoal); font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-feed-meta { font-size: 0.5625rem; color: var(--text-muted); margin-top: 1px; }

/* Mini plan (view 2) */
.mini-plan-head { padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.mini-plan-tag { display: inline-block; font-family: var(--font-display); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 5px; border-radius: 3px; background: var(--yellow); color: var(--charcoal); margin-bottom: 4px; }
.mini-plan-title { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700; color: var(--charcoal); line-height: 1.25; }
.mini-plan-meta { font-size: 0.5625rem; color: var(--text-muted); margin-top: 2px; }
.mini-plan-label {
  font-family: var(--font-display); font-size: 0.5625rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 8px; margin-bottom: 4px;
}
.mini-plan-step { display: flex; gap: 8px; align-items: flex-start; padding: 6px 0; }
.mini-plan-num {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--charcoal); color: var(--yellow);
  font-family: var(--font-display); font-size: 0.625rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mini-plan-step-text { font-size: 0.6875rem; color: var(--charcoal); font-weight: 600; line-height: 1.3; }
.mini-plan-actions { display: flex; gap: 6px; margin-top: 6px; }
.mini-plan-btn {
  font-family: var(--font-display); font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.mini-plan-btn.primary { background: var(--charcoal); color: var(--yellow); }
.mini-plan-btn.secondary { background: var(--surface); color: var(--charcoal); border: 1px solid var(--border); }

/* Mini chat (view 3) */
.inside-sam-card.chat .inside-sam-window { background: var(--charcoal); }
.inside-sam-card.chat .inside-sam-chrome { background: rgba(255,255,255,0.04); border-bottom-color: rgba(255,255,255,0.08); }
.inside-sam-card.chat .inside-sam-chrome-title { color: rgba(255,255,255,0.45) !important; }
.inside-sam-card.chat .inside-sam-body { gap: 8px; }
.mini-chat-msg { display: flex; max-width: 80%; }
.mini-chat-msg.user { align-self: flex-end; }
.mini-chat-msg.sam { align-self: flex-start; }
.mini-chat-bubble {
  font-size: 0.6875rem; line-height: 1.4;
  padding: 7px 10px; border-radius: 10px;
}
.mini-chat-msg.user .mini-chat-bubble { background: var(--yellow); color: var(--charcoal); font-weight: 600; border-bottom-right-radius: 3px; }
.mini-chat-msg.sam .mini-chat-bubble { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.88); border-bottom-left-radius: 3px; }
.mini-chat-card {
  align-self: flex-start; width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; overflow: hidden;
}
.mini-chat-card-head {
  padding: 5px 9px; font-size: 0.5625rem; font-weight: 700;
  background: rgba(245,196,0,0.16); color: var(--yellow);
}
.mini-chat-card-line {
  padding: 5px 9px; display: flex; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.625rem; color: rgba(255,255,255,0.78);
}
.mini-chat-card-line.total { background: rgba(255,255,255,0.05); color: var(--surface); font-weight: 700; }
.mini-chat-activity { font-size: 0.5625rem; color: rgba(255,255,255,0.4); padding: 2px 4px; display: inline-flex; align-items: center; gap: 5px; }
.mini-chat-activity::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); opacity: 0.7; }

@media (max-width: 760px) {
  .inside-sam { padding: 72px 0; }
  .inside-sam-devices { flex-direction: column; align-items: center; gap: 24px; }
  .device-laptop { max-width: 100%; width: 100%; }
  .device-phone { margin-left: 0; margin-bottom: 0; width: 180px; }
}


/* Personas */
.personas { padding: 96px 0; background: var(--bg); }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.persona-card { padding: 36px 28px; border: 2px solid var(--border); border-radius: 18px; background: var(--surface); transition: border-color 0.25s; }
.persona-card:hover { border-color: var(--yellow); }
.persona-icon { position: relative; margin-bottom: 22px; width: 96px; height: 96px; }
.persona-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover; object-position: center top;
  display: block;
}
.persona-sam-badge {
  position: absolute;
  top: -2px; right: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--surface);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.persona-sam-badge svg { width: 20px; height: 20px; display: block; }
.persona-type { font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; }
.persona-type .ul { background: linear-gradient(transparent 45%, rgba(245,196,0,0.45) 45%); padding: 0 2px; }
.persona-type .ul::after { display: none; }
.persona-card h3 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.persona-card > p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.persona-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.persona-list li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.persona-list li::before { content: ''; width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* FAQ */
.faq { padding: 96px 0; background: var(--surface); }
.faq-list { max-width: 640px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; padding: 22px 0; background: none; border: none; font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--charcoal); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--text-secondary); }
.faq-chev { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-muted); }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 280px; padding-bottom: 20px; }
.faq-a p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }
.faq-a a { color: var(--text-secondary); }

/* Final CTA */
.final-cta { padding: 100px 0; background: var(--charcoal); text-align: center; position: relative; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(245,196,0,0.06) 0%, transparent 60%); pointer-events: none; z-index: 0; }

/* Safety tape */
.safety-tape {
  position: absolute; left: -3%; width: 106%; height: 52px; pointer-events: none; z-index: 2;
  transform: rotate(-1.5deg);
}
.safety-tape svg { width: 100%; height: 100%; display: block; }
.safety-tape-top { top: -22px; }
.safety-tape-bottom { bottom: -22px; }
.final-cta h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.25rem, 4.5vw, 3.25rem); line-height: 1.08; letter-spacing: -0.02em; color: var(--surface); max-width: 600px; margin: 0 auto 12px; }
.final-cta > .container > p { font-size: 1.0625rem; color: rgba(255,255,255,0.5); max-width: 460px; margin: 0 auto 36px; }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 32px; }
.final-cta .btn-outline { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.final-cta .btn-outline:hover { background: var(--surface); color: var(--charcoal); border-color: var(--surface); }
.final-note { margin-top: 0; font-size: 0.8125rem; color: rgba(255,255,255,0.25); }

/* Footer */
.footer { padding: 36px 0; background: var(--charcoal-mid); border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; color: var(--surface); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 0.6875rem; color: rgba(255,255,255,0.2); margin-top: 2px; }
.footer-muted { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.footer-muted a { color: var(--yellow); text-decoration: none; transition: color 0.15s; }
.footer-muted a:hover { color: #FFD740; }
.footer-link { font-size: 0.875rem; color: var(--yellow); text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: #FFD740; }

/* Brand links on light backgrounds (Folkware, Footing) */
.founder-sig-title a,
.faq-a a {
  color: var(--charcoal);
  text-decoration: none;
  background: linear-gradient(transparent 60%, rgba(245,196,0,0.3) 60%);
  padding: 0 2px;
  transition: background 0.15s;
}
.founder-sig-title a:hover,
.faq-a a:hover {
  background: linear-gradient(transparent 60%, rgba(245,196,0,0.5) 60%);
}

@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; gap: 36px; }
  .pain-card { --rot: 0deg !important; }
  .pain-card:nth-child(odd) { --rot: -0.6deg !important; }
  .pain-card:nth-child(even) { --rot: 0.6deg !important; }
  .stats-row { flex-direction: column; gap: 0; }
  .stats-row > div + div { border-left: none; border-top: 1px solid rgba(26,26,26,0.1); }
  .action-block { grid-template-columns: 1fr; gap: 32px; }
  .action-block:nth-child(even) { direction: ltr; }
  .yes-grid { grid-template-columns: 1fr; }
  .yes-item:nth-child(odd) { border-right: none; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .meet-sam-principle { grid-template-columns: 64px 1fr; gap: 18px; padding: 28px 0; }
  .meet-sam-principle-num { font-size: 2.25rem; }
  .meet-sam-principle-content h3 { font-size: 1.25rem; }
  .persona-grid { grid-template-columns: 1fr 1fr; }
  .preview-sidebar { display: none; }
  .preview-body { height: 420px; }
  .preview-indicator { gap: 0; }
  .pv-ind { padding: 6px 8px; font-size: 0.6875rem; }
  .pv-ind-connector { width: 16px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .section { padding: 72px 0; }
  .preview-window { border-radius: 12px; }
  .preview-body { height: 440px; }
  .pv-scene { padding: 20px; }
  .founder-card { padding: 28px 24px; }
  .persona-grid { grid-template-columns: 1fr; }
}

/* ── Hero load animations ───────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; animation: fadeUp 0.5s ease forwards; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }

/* ── Scroll-triggered reveal ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: none; }
.rv1 { transition-delay: 0.05s; }
.rv2 { transition-delay: 0.13s; }
.rv3 { transition-delay: 0.21s; }
.rv4 { transition-delay: 0.29s; }
.rv5 { transition-delay: 0.37s; }
.rv6 { transition-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
}
