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


  :root {
    --tomato: #E8321A;
    --tomato-dark: #B52210;
    --tomato-light: #FF5C40;
    --cream: #080808;
    --black: #ffffff;
    --charcoal: #e0e0e0;
    --mid: #888888;
    --border: rgba(232,50,26,0.25);
    --green: #27AE60;
    --green-light: #0a2015;


    /* extra dark-mode tokens */
    --surface: #0f0f0f;
    --surface2: #161616;
    --surface3: #1c1c1c;
  }


  html { scroll-behavior: smooth; }


  body {
    background: #080808;
    color: #f0f0f0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  .trail-button {
    background: var(--tomato);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 15px; font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s, transform 0.1s;
  }
  .trail-button:hover { background: var(--tomato-dark); transform: translateY(-1px); }



  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.4;
  }

  /* ── HERO ── */
  .hero {
    padding: 120px 5vw 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid rgba(232,50,26,0.2);
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(232,50,26,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(232,50,26,0.05) 0%, transparent 50%), #080808;
  }


  .hero::after {
    content: 'CAPABILITIES';
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 14vw, 180px);
    color: var(--tomato);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }


  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--tomato);
    text-transform: uppercase;
    margin-bottom: 24px;
  }


  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.93;
    letter-spacing: 0.02em;
    color: #f0f0f0;
    margin-bottom: 32px;
  }


  .hero h1 em {
    font-style: normal;
    color: var(--tomato);
  }


  .hero-body {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 40px;
  }


  .hero-actions {
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  }


  .btn-ghost {
    color: rgba(255,255,255,0.6);
    font-size: 15px; font-weight: 400;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
  }
  .btn-ghost:hover { color: var(--tomato); border-color: var(--tomato); }


  /* ── GRAPHIC CALLOUT ── */
  .graphic-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  }


  .graphic-box::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,50,26,0.3) 0%, transparent 70%);
    border-radius: 50%;
  }


  .graphic-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    color: #ffffff;
  }


  /* ── LIVE AGENT FEED ── */
  .agent-feed {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 10px;
    background: var(--surface2);
    border: 1px solid rgba(232,50,26,0.35);
    box-shadow: 0 0 0 1px rgba(232,50,26,0.08), 0 12px 30px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: feedGlow 2.6s ease-in-out infinite;
  }


  @keyframes feedGlow {
    0%, 100% { box-shadow: 0 0 0 1px rgba(232,50,26,0.08), 0 12px 30px rgba(0,0,0,0.35); }
    50%      { box-shadow: 0 0 0 1px rgba(232,50,26,0.28), 0 12px 34px rgba(232,50,26,0.15); }
  }


  .agent-feed-live {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
  }


  .agent-feed-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(39,174,96,0.6);
    animation: liveDotPulse 1.8s ease-out infinite;
  }


  @keyframes liveDotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(39,174,96,0.55); }
    70%  { box-shadow: 0 0 0 11px rgba(39,174,96,0); }
    100% { box-shadow: 0 0 0 0 rgba(39,174,96,0); }
  }


  .agent-toast-window {
    position: relative;
    height: 56px;
    overflow: hidden;
    background: var(--surface3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
  }


  .agent-toast {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
  }


  .agent-toast .icon {
    flex-shrink: 0;
    font-size: 24px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(232,50,26,0.15);
    border-radius: 50%;
    transition: opacity 0.2s ease;
  }
  .agent-toast .agent-name {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--tomato-light);
    background: rgba(232,50,26,0.14);
    padding: 4px 9px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
  }
  .msg-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
  }
  .agent-toast .msg {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .agent-toast .cursor {
    color: var(--tomato-light);
    margin-left: 2px;
    font-weight: 400;
    animation: cursorBlink 0.9s steps(1) infinite;
  }
  @keyframes cursorBlink { 50% { opacity: 0; } }


  .typing-dots {
    display: inline-flex;
    gap: 5px;
    align-items: center;
  }
  .typing-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    animation: typingBounce 1s ease-in-out infinite;
  }
  .typing-dots span:nth-child(2) { animation-delay: 0.15s; }
  .typing-dots span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
  }


  .agent-toast .ts {
    margin-left: auto;
    flex-shrink: 0;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
  }


  @media (prefers-reduced-motion: reduce) {
    .agent-feed-dot, .agent-feed { animation: none; }
    .agent-toast .cursor { animation: none; }
    .typing-dots span { animation: none; }
  }


  .day-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }


  .day-col { }


  .day-col-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 1;
    padding-bottom: 8px;
    border-bottom: 2px solid currentColor;
  }


  .day-col-label.bad { color: var(--tomato-light); }
  .day-col-label.good { color: var(--green); }


  .time-block {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
    border-left: 4px solid transparent;
    letter-spacing: 0.01em;
    background: var(--surface2);
    color: #f0f0f0;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(10px);
  }


  .day-compare.in-view .time-block {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.45s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.45s ease;
  }


  .day-col:first-child .time-block { transition-delay: calc(var(--i, 0) * 60ms); }
  .day-col:last-child .time-block { transition-delay: calc(var(--i, 0) * 60ms + 120ms); }


  .time-block:hover {
    background: var(--surface3);
    transform: translateX(4px) scale(1.015);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  }


  .time-block.admin {
    border-left-color: var(--tomato);
  }
  .time-block.admin .t { color: #FFA593; }
  .time-block.admin:hover { box-shadow: 0 4px 14px rgba(232,50,26,0.25); }


  .time-block.client {
    border-left-color: var(--green);
  }
  .time-block.client .t { color: #5FE39A; }
  .time-block.client:hover { box-shadow: 0 4px 14px rgba(39,174,96,0.25); }


  .time-block.free { background: var(--surface2); color: rgba(255,255,255,0.6); }


  .time-block.hot-block {
    background: var(--tomato);
    border-left-color: #ffffff;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding: 13px 14px;
    animation: hotPulse 2.4s ease-in-out infinite;
  }
  .time-block.hot-block:hover {
    transform: translateX(4px) scale(1.02);
    box-shadow: 0 6px 20px rgba(232,50,26,0.45);
  }
  .time-block.hot-block::after {
    content: '';
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
  }


  @keyframes hotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,50,26,0.45); }
    50% { box-shadow: 0 0 0 6px rgba(232,50,26,0); }
  }


  .day-col-total {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.15);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.45s ease 0.5s, transform 0.45s ease 0.5s;
  }


  .day-compare.in-view .day-col-total {
    opacity: 1;
    transform: translateY(0);
  }


  .day-col-total .num {
    font-weight: 700;
  }


  .day-col-total.bad .num { color: var(--tomato-light); }
  .day-col-total.good .num { color: var(--green); }


  .time-block .t {
    font-family: 'DM Mono', monospace;
    font-size: 12.5px;
    font-weight: 700;
    opacity: 1;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
  }


  .divider-line {
    width: 1px;
    background: rgba(255,255,255,0.12);
    position: absolute;
    top: 80px; bottom: 56px;
    left: 50%;
  }


  .divider-badge {
    position: absolute;
    top: calc(50% - 4px);
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }


  @media (prefers-reduced-motion: reduce) {
    .time-block, .day-col-total, .time-block.hot-block {
      animation: none !important;
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }




  /* ── STAT STRIP ── */
  .stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(232,50,26,0.2);
    background: #0a0a0a;
  }


  .stat-cell {
    padding: 48px 40px;
    border-right: 1px solid rgba(232,50,26,0.15);
  }
  .stat-cell:last-child { border-right: none; }


  .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: var(--tomato);
    letter-spacing: 0.02em;
    margin-bottom: 8px;    
    font-weight: 300 !important;
  }


  .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
  }


  /* ── SECTION ── */
  .section {
    padding: 100px 5vw;
    border-bottom: 1px solid rgba(232,50,26,0.15);
  }


  .section-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--tomato);
    text-transform: uppercase;
    margin-bottom: 20px;
  }


  .section-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    max-width: 800px;
    color: #ffffff;
  }


  .section-body {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 48px;
  }


  /* ── PROBLEM → SOLUTION ── */
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 60px;
    border: 1px solid rgba(232,50,26,0.2);
    border-radius: 8px;
    overflow: hidden;
  }


  .problem-col {
    padding: 48px 39px;
  }


  .problem-col:first-child {
    background: rgba(232,50,26,0.07);
    border-right: 1px solid rgba(232,50,26,0.15);
  }


  .problem-col:last-child {
    background: rgba(39,174,96,0.05);
  }


  .col-head {
    display: flex; align-items: center; gap: 13px;
    margin-bottom: 28px;
  }


  .col-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
  }


  .col-icon.red { background: rgba(232,50,26,0.16); color: var(--tomato-light); }
  .col-icon.green { background: rgba(39,174,96,0.18); color: var(--green); }


  .col-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
  }


  .problem-list { list-style: none; }


  .problem-list li {
    padding: 17px 0;
    border-bottom: 1px solid rgba(232,50,26,0.12);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.94);
    transition: padding-left 0.2s ease;
  }


  .problem-list li:hover { padding-left: 7px; }


  .problem-list li:last-child { border-bottom: none; }


  .pill-bad, .pill-good {
    flex-shrink: 0;
    width: 27px; height: 27px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
  }
  .pill-bad { color: var(--tomato-light); background: rgba(232,50,26,0.16); }
  .pill-good { color: var(--green); background: rgba(39,174,96,0.18); }


  /* ── HOW IT WORKS ── */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }


  .how-card {
    padding: 36px 32px;
    border: 1px solid rgba(232,50,26,0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
    background: #0f0f0f;
  }


  .how-card:hover { border-color: var(--tomato); background: rgba(232,50,26,0.04); }


  .how-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: var(--tomato);
    opacity: 0.12;
    position: absolute;
    top: 16px; right: 20px;
    letter-spacing: 0.02em;
  }


  .how-icon {
    width: 44px; height: 44px;
    background: var(--black);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
  }


  .how-title {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
  }


  .how-body {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }


  /* ── AUTOMATION LIST ── */
  .automation-section {
    padding: 100px 5vw;
    background: #050505;
    color: white;
    border-bottom: 1px solid rgba(232,50,26,0.2);
    position: relative;
    overflow: hidden;
  }


  .automation-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,50,26,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }


  .automation-section .section-eyebrow { color: var(--tomato-light); }


  .automation-section .section-headline { color: white; }


  .task-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 60px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
  }


  .task-item {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.15s;
  }


  .task-item:hover { background: rgba(232,50,26,0.07); }
  .task-item:nth-child(even) { border-right: none; }
  .task-item:nth-last-child(-n+2) { border-bottom: none; }


  .task-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(29,158,117,0.2);
    border: 1px solid rgba(29,158,117,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 11px;
    color: #7de8a8;
  }


  .task-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
  }


  .task-agent {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--tomato-light);
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
  }


  /* ── REALTOR DAY ── */
  .day-section {
    padding: 100px 5vw;
    border-bottom: 1px solid rgba(232,50,26,0.15);
    background: #080808;
  }


  .day-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }


  .day-timeline { }


  .day-header {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(232,50,26,0.15);
    margin-bottom: 16px;
    color: rgba(255,255,255,0.4);
  }


  .timeline-item {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    align-items: flex-start;
  }


  .timeline-time {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.85);
    width: 52px;
    flex-shrink: 0;
    padding-top: 10px;
  }


  .timeline-block {
    flex: 1;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.4;
  }


  .timeline-block.admin-block {
    background: rgba(232,50,26,0.1);
    border-left: 3px solid var(--tomato);
    color: rgba(255,255,255,0.75);
  }


  .timeline-block.client-block {
    background: rgba(39,174,96,0.08);
    border-left: 3px solid var(--green);
    color: rgba(255,255,255,0.75);
  }


  .timeline-block.free-block {
    background: rgba(255,255,255,0.03);
    border-left: 3px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.35);
    font-style: italic;
  }


  .timeline-block.hot-block {
    background: var(--tomato);
    border-left: none;
    color: white;
    font-weight: 500;
  }


  .day-legend {
    display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap;
  }


  .legend-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: rgba(255,255,255,0.4);
  }


  .legend-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }


  /* ── TESTIMONIAL STRIP ── */
  .testimonial-strip {
    padding: 80px 0;
    border-bottom: 1px solid rgba(232,50,26,0.15);
    background: #0a0a0a;
    overflow: hidden;
  }


  .testimonial-marquee {
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }


  .testimonial-track {
    display: flex;
    gap: 28px;
    width: max-content;
    padding: 0 5vw;
    animation: testimonialScroll 38s linear infinite;
  }


  .testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
  }


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


  .testimonial {
    width: 340px;
    flex-shrink: 0;
    padding: 28px;
    border: 1px solid rgba(232,50,26,0.2);
    border-radius: 10px;
    background: #0f0f0f;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }


  .testimonial:hover {
    transform: translateY(-6px);
    border-color: rgba(232,50,26,0.5);
    box-shadow: 0 16px 34px rgba(0,0,0,0.4);
  }


  .testimonial-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }


  .testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 19px;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: linear-gradient(135deg, var(--tomato), var(--tomato-dark));
  }


  .quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: var(--tomato);
    line-height: 1;
  }


  .quote-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    font-style: italic;
  }


  .quote-author {
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f0;
  }


  .quote-role {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
  }


  .quote-volume {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(39,174,96,0.14);
    color: var(--green);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }


  @media (prefers-reduced-motion: reduce) {
    .testimonial-track { animation: none; }
  }


  /* ── ROI SECTION ── */
  .roi-section {
    padding: 100px 5vw;
    border-bottom: 1px solid rgba(232,50,26,0.15);
    background: #080808;
  }


  .roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
  }


  .roi-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }


  .roi-card {
    padding: 28px 24px;
    border: 1px solid rgba(232,50,26,0.2);
    border-radius: 8px;
    background: #0f0f0f;
  }


  .roi-card.highlight {
    background: var(--tomato);
    border-color: var(--tomato);
    color: white;
  }


  .roi-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    line-height: 1;
    color: var(--tomato);
    margin-bottom: 6px;
  }


  .roi-card.highlight .roi-num { color: white; }


  .roi-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
  }


  .roi-card.highlight .roi-desc { color: rgba(255,255,255,0.8); }


  /* ── CTA BANNER ── */
  .cta-banner {
    padding: 120px 5vw;
    background: radial-gradient(ellipse at center, rgba(232,50,26,0.12) 0%, transparent 70%), #050505;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }


  .cta-banner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(232,50,26,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }


  .cta-banner .section-eyebrow { color: var(--tomato-light); text-align: center; }


  .cta-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    position: relative;
  }


  .cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto 48px;
    position: relative;
  }


  .cta-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    position: relative;
  }


  .btn-white {
    background: white;
    color: var(--tomato);
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 15px; font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.1s, background 0.15s, color 0.15s;
  }
  .btn-white:hover { transform: translateY(-1px); background: #fff0ee; color: var(--tomato-dark); }


  .btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.15s;
  }
  .btn-outline-white:hover { border-color: white; }


  /* ── WEEK DONUT CHART ── */
  .week-chart {
    display: flex;
    align-items: center;
    gap: 72px;
    flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 56px 60px;
    margin: 32px 0 56px;
    position: relative;
    overflow: hidden;
  }


  .week-chart-donut {
    position: relative;
    flex-shrink: 0;
    width: 320px; height: 320px;
  }


  .week-chart-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(232,50,26,0.22), rgba(39,174,96,0.18), rgba(232,50,26,0.22));
    filter: blur(28px);
    opacity: 0;
    animation: weekChartRotate 14s linear infinite;
    transition: opacity 0.6s ease 0.3s;
  }


  .week-chart.in-view .week-chart-glow { opacity: 0.55; }


  @keyframes weekChartRotate {
    to { transform: rotate(360deg); }
  }


  .week-chart-donut svg { width: 100%; height: 100%; position: relative; z-index: 1; }


  .week-chart-donut circle {
    transition: stroke-width 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  }


  .week-chart-donut .seg-admin.is-active,
  .week-chart-donut .seg-client.is-active {
    stroke-width: 40;
    filter: drop-shadow(0 0 10px currentColor);
  }


  .week-chart-donut .seg-admin.is-dimmed,
  .week-chart-donut .seg-client.is-dimmed {
    opacity: 0.25;
  }


  .week-chart-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    z-index: 2;
  }


  .week-chart-center .big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 66px;
    line-height: 1;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
  }


  .week-chart-center .small {
    font-family: 'DM Mono', monospace;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease 1.6s, transform 0.5s ease 1.6s;
  }


  .week-chart.in-view .week-chart-center .small {
    opacity: 1;
    transform: translateY(0);
  }


  .week-chart-info { flex: 1; min-width: 300px; }


  .week-chart-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 4.2vw, 52px);
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.08;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }


  .week-chart.in-view .week-chart-headline {
    opacity: 1;
    transform: translateX(0);
  }


  .week-chart-legend { display: flex; flex-direction: column; gap: 22px; }


  .week-chart-legend-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 23px;
    color: rgba(255,255,255,0.92);
    cursor: pointer;
    padding: 6px 10px;
    margin: -6px -10px;
    border-radius: 8px;
    transition: background 0.2s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(-12px);
  }


  .week-chart.in-view .week-chart-legend-row {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s ease;
  }


  .week-chart.in-view .week-chart-legend-row:nth-child(1) { transition-delay: 0.9s; }
  .week-chart.in-view .week-chart-legend-row:nth-child(2) { transition-delay: 1.05s; }


  .week-chart-legend-row:hover { background: rgba(255,255,255,0.05); }
  .week-chart-legend-row.is-dimmed { opacity: 0.5 !important; }


  .week-chart-swatch {
    width: 19px; height: 19px;
    border-radius: 5px;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
  }
  .week-chart-swatch.admin { background: var(--tomato); }
  .week-chart-swatch.client { background: var(--green); }


  .week-chart-legend-row:hover .week-chart-swatch.admin { box-shadow: 0 0 12px rgba(232,50,26,0.7); }
  .week-chart-legend-row:hover .week-chart-swatch.client { box-shadow: 0 0 12px rgba(39,174,96,0.7); }


  .week-chart-legend-row .hrs {
    margin-left: auto;
    font-family: 'DM Mono', monospace;
    font-weight: 700;
    font-size: 21px;
    color: #ffffff;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
  }


  @media (prefers-reduced-motion: reduce) {
    .week-chart-glow { animation: none; }
    .week-chart-headline, .week-chart-legend-row, .week-chart-center .small {
      opacity: 1 !important; transform: none !important; transition: none !important;
    }
  }
  
/* =========================================================
   RESPONSIVE OVERRIDES (capabilities.html)
   ========================================================= */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 90px 6vw 60px;
    text-align: left;
  }

  .day-compare,
  .problem-grid,
  .day-layout,
  .roi-grid,
  .roi-cards {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .task-list {
    grid-template-columns: 1fr;
  }

  .testimonial-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(40px, 9vw, 64px);
  }

  .hero-body {
    font-size: 17px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .trail-button {
    text-align: center;
    margin-right: 0;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .day-compare,
  .problem-grid,
  .day-layout {
    gap: 24px;
  }
}
