/* ═══════════════════════════════════════════════════════════
   Harvestry — Marketing Site
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Design Tokens ─────────────────────────────────────── */

:root {
  /* Colour palette */
  --bg:              #FDFCF9;
  --bg-alt:          #F5F3EE;
  --bg-dark:         #1C1917;
  --bg-dark-alt:     #252320;

  --text:            #1C1917;
  --text-2:          #57534E;
  --text-3:          #A8A29E;
  --text-inv:        #FDFCF9;
  --text-inv-2:      #D6D3D1;
  --text-inv-3:      rgba(255,255,255,0.35);

  --border:          #E7E5E4;
  --border-dk:       rgba(255,255,255,0.08);

  --green:           #16A34A;
  --green-h:         #15803D;
  --green-light:     #F0FDF4;
  --green-text:      #14532D;

  --amber:           #C27820;
  --amber-h:         #A3640F;
  --amber-light:     #FDF6E7;
  --amber-border:    rgba(194,120,32,0.28);
  --amber-text:      #7A4A08;

  --plum:            #7A3F8A;
  --plum-light:      #F6F0FA;
  --plum-border:     rgba(122,63,138,0.22);
  --plum-text:       #42165A;

  --purple:          #7C3AED;
  --purple-light:    #F5F3FF;
  --purple-text:     #4C1D95;

  /* Layout */
  --container:       1100px;
  --py:              96px;
  --nav-h:           64px;

  /* Radii */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md:  0 4px 16px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
  --sh-lg:  0 16px 48px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.07);
  --sh-win: 0 0 0 1px rgba(0,0,0,0.12),
            0 8px 24px rgba(0,0,0,0.18),
            0 32px 80px rgba(0,0,0,0.30);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 2. Reset ─────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── 3. Typography ────────────────────────────────────────── */

.display {
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.032em;
}
.headline {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.title {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.018em;
}
.body-lg { font-size: 18px; line-height: 1.65; color: var(--text-2); }
.body    { font-size: 16px; line-height: 1.65; color: var(--text-2); }
.small   { font-size: 14px; line-height: 1.55; color: var(--text-2); }
.label   {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── 4. Layout ────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}
.section     { padding-block: var(--py); }
.section--alt  { background: var(--bg-alt); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}

/* ── 5. Navigation ────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(253,252,249,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-right: auto;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ── 6. Buttons ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 550;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: var(--text-inv);
  box-shadow: var(--sh-sm);
}
.btn--primary:hover {
  background: #2C2B28;
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}
.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text-2);
}
.btn--outline:hover { border-color: var(--text-3); color: var(--text); }

.btn--ghost { color: var(--text-2); }
.btn--ghost:hover { color: var(--text); }

.btn--lg { padding: 14px 30px; font-size: 16px; }

.btn--inv {
  background: var(--text-inv);
  color: var(--text);
  box-shadow: var(--sh-sm);
}
.btn--inv:hover {
  background: #F0EFEB;
  transform: translateY(-1px);
  box-shadow: var(--sh-lg);
}

.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── 7. Badges ────────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 550;
}
.badge--neutral {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-2);
}
.badge--green {
  background: var(--green-light);
  border: 1px solid rgba(22,163,74,0.2);
  color: var(--green-text);
}
.badge--coming {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  color: #92400E;
}
.badge--purple {
  background: var(--purple-light);
  border: 1px solid rgba(124,58,237,0.2);
  color: var(--purple-text);
}

/* ── 8. Hero ──────────────────────────────────────────────── */

.hero {
  padding-top: 72px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 0 48px;
  margin-bottom: 64px;
}

.hero-text {
  text-align: left;
}

.hero-tree-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-tree-wrap::before {
  content: '';
  position: absolute;
  inset: 10% 15%;
  background: radial-gradient(ellipse, rgba(180,120,40,0.10) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.hero-tree {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  /* nudge the tree down slightly so its visual centre aligns with the text block */
  margin-top: 24px;
  /* subtle drop shadow so it reads on the warm-white background */
  filter: drop-shadow(0 24px 48px rgba(120,70,20,0.15));
}

.hero-eyebrow { margin-bottom: 28px; }
.hero-headline { margin-bottom: 24px; }
.hero-sub {
  max-width: 520px;
  margin-bottom: 44px;
  font-size: 19px;
  line-height: 1.62;
  color: var(--text-2);
}
.hero-actions  { margin-bottom: 16px; }
.hero-note     { font-size: 13px; color: var(--text-3); }

@media (max-width: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 48px;
  }
  .hero-text { text-align: center; }
  .hero-sub  { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-tree-wrap { margin-top: 32px; }
  .hero-tree { max-width: 320px; margin-inline: auto; }
}

/* ── 9. App Window Mockup ─────────────────────────────────── */

.window-wrap {
  max-width: 980px;
  margin-inline: auto;
  position: relative;
  margin-bottom: 80px;
}
.window-wrap::before {
  /* Soft glow behind the window */
  content: '';
  position: absolute;
  inset: 20% 5% -10%;
  background: radial-gradient(ellipse, rgba(22,163,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.window {
  background: #1A1917;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh-win);
  position: relative;
}
.window-chrome {
  height: 42px;
  background: #252220;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot--close { background: #FF5F57; }
.dot--min   { background: #FEBC2E; }
.dot--max   { background: #28C840; }

.window-body {
  display: flex;
  height: 580px;
}

/* Sidebar */
.window-sidebar {
  width: 230px;
  flex-shrink: 0;
  background: #1C1B18;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 9px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.sidebar-header-title {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
}
.sidebar-header-actions { display: flex; gap: 8px; }
.sidebar-icon-btn {
  font-size: 11px; color: rgba(255,255,255,0.3);
  cursor: default;
}
.sidebar-list {
  flex: 1; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 4px 6px;
  gap: 1px;
}
.s-row {
  display: flex; align-items: center;
  gap: 9px; padding: 5px 8px;
  border-radius: 7px; flex-shrink: 0;
}
.s-row--active { background: rgba(253,186,18,0.18); }
.s-thumb {
  width: 44px; height: 30px;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.s-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.s-thumb-icon { font-size: 8px; color: rgba(255,255,255,0.2); }
.s-text-wrap { flex: 1; overflow: hidden; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.s-title {
  font-size: 9.5px; font-weight: 550;
  color: rgba(255,255,255,0.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.s-row--active .s-title { color: rgba(255,255,255,0.92); font-weight: 600; }
.s-status {
  font-size: 8px; color: rgba(255,255,255,0.28);
  display: flex; align-items: center; gap: 4px;
}
.s-status-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
}
.s-status-dot--green { background: #28C840; }
.s-status-dot--amber { background: #FEBC2E; }
.s-status-dot--gray  { background: rgba(255,255,255,0.18); }

/* Sidebar folder groups */
.s-folder-group { display: flex; flex-direction: column; }
.s-folder {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 10px 3px;
}
.s-folder-arrow {
  font-size: 7px; color: rgba(255,255,255,0.22);
  flex-shrink: 0;
}
.s-folder-name {
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.s-folder-group .s-row { padding-left: 14px; }

/* Sidebar footer stats */
.sidebar-footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.sidebar-footer-row {
  display: flex;
}
.sidebar-footer-divider {
  height: 1px; background: rgba(255,255,255,0.05);
}
.sidebar-stat-cell {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
}
.sidebar-stat-icon {
  font-size: 12px; color: rgba(255,255,255,0.2);
  flex-shrink: 0; width: 14px; text-align: center;
}
.sidebar-stat-text {
  display: flex; flex-direction: column; gap: 1px;
}
.sidebar-stat-val {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.sidebar-stat-lbl {
  font-size: 7.5px; color: rgba(255,255,255,0.25);
  line-height: 1;
}

/* Main detail pane */
.window-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1E1D1A;
}
.win-toolbar {
  height: 38px;
  background: #252320;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  flex-shrink: 0;
}
.win-toolbar-title {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.win-toolbar-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.win-toolbar-btn {
  font-size: 9px; color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07);
  padding: 3px 9px; border-radius: 4px;
  white-space: nowrap;
}
.win-toolbar-btn--icon { padding: 3px 7px; }
.window-detail-top {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 8px;
  gap: 8px;
}

/* Detail info section — below video */
.detail-info {
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 20px 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.detail-title {
  font-size: 12px; font-weight: 650;
  color: rgba(255,255,255,0.72);
  margin-bottom: 9px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex-shrink: 0;
}
.detail-stats-row {
  display: flex;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 11px;
  flex-shrink: 0;
}
.detail-stat {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 7px 4px 6px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.detail-stat:last-child { border-right: none; }
.detail-stat-icon { display: block; color: rgba(255,255,255,0.22); margin-bottom: 2px; flex-shrink: 0; }
.detail-stat-val {
  font-size: 12px; font-weight: 650;
  color: rgba(255,255,255,0.7);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.detail-stat-lbl { font-size: 7.5px; color: rgba(255,255,255,0.25); margin-top: 2px; }
.detail-pipeline-head {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 7px; flex-shrink: 0;
}
.detail-pipeline {
  display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 8px; flex-shrink: 0;
}
.detail-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; color: rgba(255,255,255,0.55);
}
.step-check {
  width: 12px; height: 12px; border-radius: 50%;
  background: #28C840;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 7px; color: #fff; font-weight: 700;
}
.detail-actions {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 4px; flex-shrink: 0;
}
.detail-completed {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; color: #28C840; font-weight: 600;
}
.detail-completed-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #28C840; flex-shrink: 0;
}
.detail-action-btns { display: flex; gap: 6px; }
.detail-btn {
  font-size: 9px; padding: 4px 11px; border-radius: 5px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap; flex-shrink: 0;
}
.detail-btn--amber {
  background: #FEBC2E; color: rgba(0,0,0,0.72); font-weight: 600;
}
.window-video {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16/9;
  background: #0D0C0A;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.win-video-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  border-radius: 8px;
}
.win-video-caption {
  position: absolute;
  bottom: 7px; left: 0; right: 0;
  text-align: center;
  font-size: 7.5px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  z-index: 2;
  pointer-events: none;
}
.win-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.win-play-triangle {
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent rgba(255,255,255,0.75);
  margin-left: 3px;
}
.window-scrubber-bar {
  width: 100%;
  max-width: 460px;
  height: 34px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  flex-shrink: 0;
}
.scrub-time { font-size: 9.5px; color: rgba(255,255,255,0.35); font-variant-numeric: tabular-nums; white-space: nowrap; }
.scrub-track { flex: 1; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; position: relative; }
.scrub-fill { position: absolute; left: 0; top: 0; height: 100%; width: 25%; background: var(--green); border-radius: 2px; }
.scrub-thumb { position: absolute; left: 25%; top: 50%; transform: translate(-50%,-50%); width: 11px; height: 11px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.scrub-btn {
  height: 22px;
  padding: 0 9px;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center;
  font-size: 9px; color: rgba(255,255,255,0.45);
  white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0.01em;
}
.scrub-btn--active {
  background: rgba(22,163,74,0.22);
  color: rgba(80,210,120,0.9);
}

/* Transcript panel */
.window-transcript {
  width: 310px;
  flex-shrink: 0;
  background: #181715;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.panel-header {
  display: flex; align-items: center;
  padding: 10px 16px 9px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.panel-title {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.panel-stats-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 16px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.panel-stats-text {
  font-size: 8px; color: rgba(255,255,255,0.3);
}
.panel-copy-btn {
  font-size: 8px; color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  padding: 2px 7px; border-radius: 3px;
}

/* Scrollable timeline */
.tx-scroll {
  flex: 1; overflow: hidden;
  display: flex; flex-direction: column;
}

/* Flat passage row — timestamp column left, text right */
.tx-row {
  display: flex; align-items: flex-start;
  gap: 0;
  padding: 7px 16px;
  flex-shrink: 0;
}
.tx-row--active {
  background: rgba(255,255,255,0.04);
}
.tx-ts {
  width: 42px; flex-shrink: 0;
  font-size: 7.5px;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.22);
  padding-top: 2px;
  text-align: right;
  padding-right: 10px;
  font-family: 'SF Mono', 'Menlo', monospace;
}
.tx-body {
  flex: 1;
  font-size: 8px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.tx-row--active .tx-ts  { color: rgba(255,255,255,0.45); }
.tx-row--active .tx-body { color: rgba(255,255,255,0.8); }
.tx-hl {
  background: rgba(251,191,36,0.18);
  border-radius: 2px; padding: 0 2px;
  color: rgba(251,191,36,0.85);
}

/* Screenshot thumbnail in transcript — inset like text rows */
.tx-shot {
  margin: 4px 16px 2px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.tx-shot-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  opacity: 0.88;
}

/* Inline user note */
.tx-note {
  margin: 2px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 6px 10px;
  flex-shrink: 0;
}
.tx-note-label {
  font-size: 7px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}
.tx-note-text {
  font-size: 8px; line-height: 1.6;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ── 10. Feature Strip ────────────────────────────────────── */

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-alt);
  gap: 0;
}
.strip-card { background: var(--bg-alt); padding: 36px 32px; }
.strip-icon { display: block; margin-bottom: 14px; color: var(--text-2); }
.strip-icon svg { width: 28px; height: 28px; display: block; }
.strip-title { font-size: 16px; font-weight: 650; letter-spacing: -0.012em; margin-bottom: 8px; }
.strip-body  { font-size: 15px; line-height: 1.55; color: var(--text-2); }

/* ── 11. Feature Sections ─────────────────────────────────── */

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feat-grid--flip .feat-text   { order: 2; }
.feat-grid--flip .feat-visual { order: 1; }

.feat-eyebrow  { margin-bottom: 16px; }
.feat-heading  { margin-bottom: 20px; }
.feat-body     { margin-bottom: 28px; }

.feat-list { display: flex; flex-direction: column; gap: 18px; }
.feat-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 6px;
  list-style: none;
}
.feat-list li::before {
  content: "◆";
  font-size: 7px; color: var(--green);
  padding-top: 4px;
  grid-row: 1; grid-column: 1;
}
.feat-list li > strong {
  display: block;
  grid-column: 2; grid-row: 1;
  font-size: 15px; font-weight: 650; color: var(--text);
  line-height: 1.4; padding-bottom: 4px;
}
.feat-list li > span {
  display: block;
  grid-column: 2; grid-row: 2;
  font-size: 14.5px; line-height: 1.65; color: var(--text-2);
}

.feat-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-val { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.stat-lbl { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ── 12. Feature Screenshots ──────────────────────────────── */

.feat-screenshot-wrap {
  display: block;
  max-width: 340px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 16px;
  box-shadow: var(--sh-win);
}
.feat-screenshot-wrap--wide {
  max-width: 100%;
  border-radius: 18px;
}
.feat-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.feat-screenshot--wide {
  border-radius: 8px;
}

/* Screenshot Placeholders */

.shot-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--text-3);
  text-align: center; padding: 32px;
}
.shot-placeholder-icon { display: flex; align-items: center; justify-content: center; }
.shot-placeholder-icon svg { width: 28px; height: 28px; display: block; }
.shot-placeholder-label { font-size: 14px; font-weight: 500; }
.shot-placeholder-hint  { font-size: 12px; }

/* ── 13. Export Feature Cards ─────────────────────────────── */

.export-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 48px;
}
.export-card { background: var(--bg); padding: 24px 22px; }
.export-card-icon { display: block; margin-bottom: 12px; color: var(--text-2); }
.export-card-icon svg { width: 22px; height: 22px; display: block; }
.export-card-title { font-size: 15px; font-weight: 650; margin-bottom: 7px; letter-spacing: -0.01em; }
.export-card-body  { font-size: 13.5px; line-height: 1.55; color: var(--text-2); }

/* ── 14. Privacy Section ──────────────────────────────────── */

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.privacy-items { display: flex; flex-direction: column; gap: 22px; }
.privacy-item  { display: flex; gap: 16px; align-items: flex-start; }
.privacy-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px; color: rgba(255,255,255,0.72);
}
.privacy-icon svg { width: 17px; height: 17px; display: block; }
.privacy-item-title { font-size: 15px; font-weight: 600; color: var(--text-inv); margin-bottom: 3px; }
.privacy-item-body  { font-size: 13.5px; line-height: 1.55; color: var(--text-inv-2); }

.privacy-exception {
  margin-top: 36px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
}
.privacy-exception p { font-size: 14px; line-height: 1.65; color: var(--text-inv-2); }
.privacy-exception strong { color: var(--text-inv); font-weight: 600; }

/* ── 15. LLM Consolidation ────────────────────────────────── */

.llm-intro { max-width: 680px; }
.llm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.llm-card {
  padding: 28px 26px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
}
.llm-tier {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 8px;
}
.llm-tier--standard { color: var(--green-text); }
.llm-tier--pro      { color: var(--plum-text); }

.llm-name { font-size: 20px; font-weight: 650; letter-spacing: -0.018em; margin-bottom: 14px; }
.llm-body { font-size: 14.5px; line-height: 1.62; color: var(--text-2); margin-bottom: 16px; }
.llm-note { font-size: 12.5px; line-height: 1.5; color: var(--text-3); }
.llm-pro-accent { border-color: var(--plum-border); background: var(--plum-light); }

/* ── 16. Languages ────────────────────────────────────────── */

.lang-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-top: 36px;
}
.lang-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  font-size: 14.5px; font-weight: 500; color: var(--text-2);
  transition: all 0.15s;
}
.lang-pill:hover { border-color: var(--text-3); color: var(--text); }

/* ── 17. CTA Section ──────────────────────────────────────── */

.cta-section {
  text-align: center;
  padding-block: 120px;
}
.cta-section .headline  { margin-bottom: 20px; }
.cta-section .body-lg   { max-width: 520px; margin-inline: auto; margin-bottom: 40px; }
.cta-note { font-size: 13px; color: var(--text-3); margin-top: 14px; }

/* ── 18. Footer ───────────────────────────────────────────── */

.footer {
  background: var(--bg-dark);
  color: var(--text-inv-2);
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-logo {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--text-inv);
  margin-bottom: 10px; display: block;
}
.footer-brand p {
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 260px; margin-top: 4px;
}
.footer-col-head {
  font-size: 11px; font-weight: 650;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.42);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text-inv); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 13px; color: rgba(255,255,255,0.25);
}

/* ── 19. Utilities ────────────────────────────────────────── */

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ── 20. Responsive ───────────────────────────────────────── */

@media (max-width: 1024px) {
  :root { --py: 72px; }
  .feat-grid { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid--flip .feat-text   { order: 0; }
  .feat-grid--flip .feat-visual { order: 0; }
  .privacy-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .window-body  { height: 400px; }
  .window-transcript { display: none; }
}

@media (max-width: 768px) {
  :root { --py: 56px; }
  .nav-links { display: none; }
  .strip-card { padding: 28px 22px; }
  .llm-cards  { grid-template-columns: 1fr; }
  .export-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .window-body { height: 300px; }
  .window-sidebar { width: 160px; }
}

@media (max-width: 560px) {
  .strip { grid-template-columns: 1fr; }
  .strip-card { padding: 32px 28px; }
}

@media (max-width: 520px) {
  .hero { padding-top: 48px; }
  .btn--lg { width: 100%; justify-content: center; }
  .export-grid { grid-template-columns: 1fr; }
  .window-sidebar { display: none; }
  .lang-pill { padding: 7px 14px; font-size: 13.5px; }
}
