
    :root {
      --cream: #FAF6EE;
      --cream-warm: #F5EFE3;
      --navy: #1A2A3A;
      --navy-deep: #0E1A28;
      --ochre: #C8923D;
      --ochre-deep: #A8782F;
      --slate: #5A6470;
      --slate-light: #8B95A1;
      --border: #E5DDD0;
      --white: #FFFFFF;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--navy);
      background: var(--cream);
      line-height: 1.6;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ========== NAV ========== */
    .nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 10;
      padding: 28px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .nav-logo {
      font-weight: 600;
      font-size: 18px;
      letter-spacing: -0.01em;
      color: var(--cream);
    }
    .nav-links {
      display: flex;
      gap: 36px;
      align-items: center;
    }
    .nav-links a {
      color: var(--cream);
      font-size: 14px;
      font-weight: 500;
      opacity: 0.9;
      transition: opacity 0.2s;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-cta {
      background: var(--ochre);
      color: var(--navy-deep) !important;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 600;
      opacity: 1 !important;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--ochre-deep); color: var(--cream) !important; }

    /* ========== SECTION 1: HERO ========== */
    .hero {
      position: relative;
      min-height: 100vh;
      background-image:
        linear-gradient(90deg, rgba(14,26,40,0.85) 0%, rgba(14,26,40,0.55) 35%, rgba(14,26,40,0.15) 60%, rgba(14,26,40,0) 80%),
        url('media/hero-cabot-tower.webp');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      padding: 120px 48px 80px;
    }
    .hero-content {
      max-width: 620px;
      color: var(--cream);
    }
    .hero-eyebrow {
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--ochre);
      margin-bottom: 18px;
    }
    .hero h1 {
      font-size: clamp(34px, 4.5vw, 58px);
      line-height: 1.1;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
    }
    .hero h1 .twline { display: block; min-height: 1.12em; white-space: nowrap; }
    .hero h1 .tw { color: var(--ochre); }
    .hero h1 .cur { display: inline-block; width: 3px; height: 0.78em; background: var(--ochre); margin-left: 4px; vertical-align: -2px; animation: heroblink 1s steps(1) infinite; }
    @keyframes heroblink { 50% { opacity: 0; } }
    @media (prefers-reduced-motion: reduce) { .hero h1 .cur { animation: none; } }
    .hero p {
      font-size: clamp(16px, 1.2vw, 18px);
      line-height: 1.55;
      max-width: 520px;
      margin-bottom: 28px;
      opacity: 0.92;
      font-weight: 400;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary, .btn-secondary {
      padding: 14px 28px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      font-family: inherit;
    }
    .btn-primary {
      background: var(--ochre);
      color: var(--navy-deep);
    }
    .btn-primary:hover { background: var(--ochre-deep); color: var(--cream); }
    .btn-secondary {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(250, 246, 238, 0.4);
    }
    .btn-secondary:hover { border-color: var(--cream); }

    /* ========== SECTION 2: SCREENSHOTS + DEMO TEASER ========== */
    .screenshots-section {
      padding: 120px 48px 80px;
      background: var(--cream);
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-eyebrow {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--ochre-deep);
      margin-bottom: 16px;
    }
    .section-heading {
      font-size: clamp(30px, 3.4vw, 44px);
      line-height: 1.15;
      font-weight: 600;
      letter-spacing: -0.02em;
      max-width: 720px;
      margin-bottom: 64px;
    }
    .screenshots-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 96px;
    }
    .screenshot-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .screenshot-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(14, 26, 40, 0.08);
    }
    .screenshot-img {
      width: 100%;
      aspect-ratio: 2 / 3;
      background: var(--cream-warm);
      object-fit: contain;
    }
    .screenshot-caption {
      padding: 20px 24px;
      border-top: 1px solid var(--border);
    }
    .screenshot-caption-label {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--slate);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .screenshot-caption-text {
      font-size: 15px;
      font-weight: 500;
      color: var(--navy);
      line-height: 1.4;
    }
    .demo-teaser {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 64px;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }
    .demo-teaser-text h3 {
      font-size: clamp(26px, 2.6vw, 36px);
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .demo-teaser-text p {
      color: var(--slate);
      font-size: 16px;
      line-height: 1.6;
      max-width: 380px;
    }
    .demo-teaser-link {
      display: inline-block;
      margin-top: 24px;
      color: var(--ochre-deep);
      font-weight: 600;
      font-size: 15px;
      border-bottom: 1px solid var(--ochre);
      padding-bottom: 2px;
    }

    /* ========== SECTION 3: PROBLEM ========== */
    .problem-section {
      padding: 100px 48px;
      background: var(--cream-warm);
    }
    .problem-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }
    .problem-eyebrow {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--ochre-deep);
      margin-bottom: 20px;
    }
    .problem-statement {
      font-size: clamp(22px, 2vw, 28px);
      line-height: 1.45;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: var(--navy);
      margin-bottom: 36px;
    }
    .problem-statement:last-child { margin-bottom: 0; }
    .problem-divider {
      width: 40px;
      height: 1px;
      background: var(--ochre);
      margin: 0 auto 36px;
    }

    /* ========== INDUSTRIES ========== */
    .industries-section {
      padding: 100px 48px;
      background: var(--cream);
    }
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }
    .industry-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .industry-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(14, 26, 40, 0.06);
    }
    .industry-card.primary {
      border: 2px solid var(--ochre);
      background: var(--cream-warm);
    }
    .industry-check {
      font-size: 20px;
      color: var(--ochre);
      font-weight: 700;
      flex-shrink: 0;
    }
    .industry-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      flex-grow: 1;
    }
    .industry-tag {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ochre-deep);
      font-weight: 700;
      background: var(--cream);
      padding: 4px 8px;
      border-radius: 4px;
    }
    .industries-footer {
      text-align: center;
      color: var(--slate);
      font-size: 16px;
      margin-top: 40px;
    }
    .industries-footer a {
      color: var(--ochre-deep);
      font-weight: 600;
      border-bottom: 1px solid var(--ochre);
    }

    /* ========== SECTION 4: FEATURES ========== */
    .features-section {
      padding: 120px 48px;
      background: var(--cream);
    }
    .features-list {
      max-width: 1100px;
      margin: 0 auto;
    }
    .feature-row {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      padding: 56px 0;
      border-bottom: 1px solid var(--border);
    }
    .feature-row:first-of-type { border-top: 1px solid var(--border); }
    .feature-row-num {
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--ochre-deep);
      margin-bottom: 12px;
    }
    .feature-row-title {
      font-size: clamp(24px, 2.4vw, 32px);
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--navy);
    }
    .feature-row-body {
      font-size: 16px;
      line-height: 1.65;
      color: var(--slate);
    }

    /* ========== SECTION 5: DEMO ========== */
    .demo-section {
      padding: 120px 48px;
      background: var(--navy-deep);
      color: var(--cream);
    }
    .demo-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .demo-text .section-eyebrow { color: var(--ochre); }
    .demo-text h2 {
      font-size: clamp(30px, 3.4vw, 44px);
      line-height: 1.15;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--cream);
      margin-bottom: 24px;
    }
    .demo-text p {
      color: rgba(250, 246, 238, 0.75);
      font-size: 17px;
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .demo-text-cta {
      display: inline-block;
      margin-top: 24px;
      padding: 14px 28px;
      background: var(--ochre);
      color: var(--navy-deep);
      border-radius: 4px;
      font-weight: 600;
      font-size: 15px;
      transition: background 0.2s;
      cursor: pointer;
      border: none;
      font-family: inherit;
    }
    .demo-text-cta:hover { background: var(--ochre-deep); color: var(--cream); }
    .phone-frame {
      width: 360px;
      height: 624px;
      margin: 0 auto;
      background: #1d1d1f;
      border-radius: 42px;
      padding: 12px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
      position: relative;
    }
    .phone-frame::before {
      content: '';
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: 110px;
      height: 28px;
      background: #1d1d1f;
      border-radius: 0 0 18px 18px;
      z-index: 2;
    }
    .phone-screen {
      width: 100%;
      height: 100%;
      background: #FFFFFF;
      border-radius: 30px;
      overflow: hidden;
      position: relative;
    }
    .phone-screen video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* ========== SECTION 5b: DENTIST-SIDE DEMO ========== */
    .dentist-demo-section {
      padding: 120px 48px;
      background: var(--navy);
      color: var(--cream);
      border-top: 1px solid rgba(250, 246, 238, 0.06);
    }
    .demo-inner.reverse {
      direction: rtl;
    }
    .demo-inner.reverse > * {
      direction: ltr;
    }
    /* Desk setup: monitor + stand + keyboard + mouse */
    .desk-setup {
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .monitor {
      width: 100%;
      background: #1d1d1f;
      border-radius: 14px;
      padding: 14px 14px 26px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
      position: relative;
    }
    .monitor::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #2a2a2c;
      border-radius: 2px;
    }
    .monitor-screen {
      width: 100%;
      aspect-ratio: 16 / 10;
      background: #f5f5f7;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .monitor-stand-neck {
      width: 90px;
      height: 26px;
      background: linear-gradient(180deg, #2a2a2c 0%, #1d1d1f 100%);
      position: relative;
      z-index: -1;
    }
    .monitor-stand-base {
      width: 200px;
      height: 8px;
      background: linear-gradient(180deg, #2a2a2c 0%, #161618 100%);
      border-radius: 0 0 8px 8px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.35);
    }
    .desk-accessories {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 40px;
      width: 100%;
      justify-content: center;
      padding: 0 20px;
    }
    .keyboard {
      width: 70%;
      max-width: 360px;
      height: 28px;
      background: linear-gradient(180deg, #ececee 0%, #c8c8ca 100%);
      border-radius: 5px;
      box-shadow:
        0 6px 16px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.6),
        inset 0 -1px 0 rgba(0,0,0,0.08);
      position: relative;
      overflow: hidden;
    }
    .keyboard::before {
      content: '';
      position: absolute;
      top: 4px;
      left: 6px;
      right: 6px;
      bottom: 4px;
      background-image:
        repeating-linear-gradient(90deg,
          rgba(0,0,0,0.06) 0,
          rgba(0,0,0,0.06) 1px,
          transparent 1px,
          transparent 14px);
      border-radius: 2px;
    }
    .keyboard::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 22%;
      right: 22%;
      height: 6px;
      background: rgba(0,0,0,0.05);
      border-radius: 1px;
    }
    .mouse {
      width: 32px;
      height: 50px;
      background: linear-gradient(180deg, #ececee 0%, #c8c8ca 100%);
      border-radius: 16px;
      box-shadow:
        0 6px 16px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.6);
      position: relative;
    }
    .mouse::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 18px;
      background: rgba(0,0,0,0.08);
      border-radius: 1px;
    }
    /* legacy class kept for fallback */
    .laptop-frame { display: none; }
    .laptop-screen { display: none; }
    .browser-chrome {
      background: #e6e6e7;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid #d4d4d6;
      flex-shrink: 0;
    }
    .browser-dots {
      display: flex;
      gap: 6px;
    }
    .browser-dots span {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #fc5f57;
    }
    .browser-dots span:nth-child(2) { background: #febc2e; }
    .browser-dots span:nth-child(3) { background: #28c840; }
    .browser-tab {
      flex: 1;
      background: #f5f5f7;
      border-radius: 6px;
      padding: 4px 12px;
      font-size: 11px;
      color: #6e6e73;
      text-align: center;
      max-width: 260px;
      margin: 0 auto;
      border: 1px solid #d4d4d6;
    }
    .email-app {
      flex: 1;
      display: flex;
      flex-direction: column;
      background: #ffffff;
      min-height: 0;
      overflow: hidden;
      position: relative;
    }
    .email-state {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      background: #ffffff;
    }
    .email-state-inbox {
      animation: state-inbox 9s ease-in-out infinite;
    }
    .email-state-detail {
      opacity: 0;
      animation: state-detail 9s ease-in-out infinite;
    }
    @keyframes state-inbox {
      0%, 45% { opacity: 1; transform: translateX(0); }
      50%, 95% { opacity: 0; transform: translateX(-12px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    @keyframes state-detail {
      0%, 45% { opacity: 0; transform: translateX(12px); }
      50%, 95% { opacity: 1; transform: translateX(0); }
      100% { opacity: 0; transform: translateX(12px); }
    }
    /* ===== Inbox view ===== */
    .gmail-toolbar {
      padding: 10px 14px;
      border-bottom: 1px solid #ececec;
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }
    .gmail-toolbar-icon {
      width: 14px;
      height: 14px;
      border: 1.5px solid #5f6368;
      border-radius: 2px;
    }
    .gmail-toolbar-arrow {
      color: #5f6368;
      font-size: 11px;
    }
    .gmail-tabs {
      display: flex;
      border-bottom: 1px solid #ececec;
      flex-shrink: 0;
      padding: 0 14px;
    }
    .gmail-tab {
      padding: 10px 16px;
      font-size: 11px;
      color: #5f6368;
      font-weight: 500;
    }
    .gmail-tab.active {
      color: #1a73e8;
      border-bottom: 2px solid #1a73e8;
      font-weight: 700;
    }
    .gmail-list {
      flex: 1;
      overflow: hidden;
    }
    .gmail-row {
      display: flex;
      align-items: center;
      padding: 10px 14px;
      border-bottom: 1px solid #f4f4f4;
      font-size: 12px;
      cursor: pointer;
    }
    .gmail-row:hover { background: #fafafa; }
    .gmail-row-checkbox {
      width: 13px;
      height: 13px;
      border: 1.5px solid #c4c4c4;
      border-radius: 2px;
      margin-right: 8px;
      flex-shrink: 0;
    }
    .gmail-row-star {
      color: #c4c4c4;
      margin-right: 10px;
      font-size: 13px;
    }
    .gmail-row-sender {
      width: 90px;
      font-weight: 500;
      color: #202124;
      flex-shrink: 0;
    }
    .gmail-row-subject {
      flex: 1;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #5f6368;
    }
    .gmail-row-subject .subj-bold {
      color: #202124;
      font-weight: 500;
    }
    .gmail-row-time {
      color: #5f6368;
      font-size: 11px;
      margin-left: 8px;
      flex-shrink: 0;
    }
    .gmail-row.highlight {
      background: #fff8e1;
      animation: highlight-flash 9s ease-in-out infinite;
    }
    @keyframes highlight-flash {
      0%, 30% { background: #fff8e1; }
      35%, 45% { background: #ffeaa3; transform: scale(1.005); }
      50%, 100% { background: #fff8e1; }
    }
    .gmail-row.highlight .gmail-row-sender,
    .gmail-row.highlight .gmail-row-subject .subj-bold {
      font-weight: 700;
    }
    /* ===== Opened email view ===== */
    .gmail-detail-toolbar {
      padding: 8px 12px;
      border-bottom: 1px solid #ececec;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .gmail-back {
      color: #5f6368;
      font-size: 13px;
    }
    .gmail-detail-body {
      padding: 10px 14px;
      flex: 1;
      overflow: hidden;
    }
    .gmail-detail-subject {
      font-size: 13px;
      font-weight: 500;
      color: #202124;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .gmail-inbox-tag {
      font-size: 9px;
      background: #f1f3f4;
      padding: 1px 6px;
      border-radius: 3px;
      color: #5f6368;
      font-weight: 400;
    }
    .gmail-sender-block {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 8px;
    }
    .gmail-sender-avatar {
      width: 22px;
      height: 22px;
      background: #db4437;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 10px;
      flex-shrink: 0;
    }
    .gmail-sender-info {
      flex: 1;
      font-size: 11px;
    }
    .gmail-sender-email {
      font-weight: 600;
      color: #202124;
    }
    .gmail-sender-to {
      color: #5f6368;
      font-size: 10px;
    }
    .gmail-sender-time {
      color: #5f6368;
      font-size: 10px;
      flex-shrink: 0;
    }
    .gmail-email-text {
      font-size: 11px;
      color: #202124;
      line-height: 1.55;
      margin-left: 30px;
    }
    .gmail-email-text strong {
      font-weight: 600;
    }
    .gmail-email-text .footnote {
      margin-top: 6px;
      color: #5f6368;
      font-size: 10px;
    }
    .gmail-actions {
      display: flex;
      gap: 6px;
      margin-top: 8px;
      margin-left: 30px;
    }
    .gmail-action-btn {
      padding: 4px 11px;
      border: 1px solid #dadce0;
      border-radius: 14px;
      font-size: 10px;
      color: #202124;
    }

    /* ========== SECTION 6: HOW IT WORKS ========== */
    .how-section {
      padding: 120px 48px;
      background: var(--cream-warm);
    }
    .how-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    .how-step-num {
      font-family: 'Inter', sans-serif;
      font-size: 56px;
      font-weight: 600;
      color: var(--ochre);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 24px;
    }
    .how-step-title {
      font-size: 19px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .how-step-body {
      font-size: 15px;
      line-height: 1.6;
      color: var(--slate);
    }
    .how-footer {
      max-width: 1200px;
      margin: 80px auto 0;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--slate);
      font-size: 16px;
    }
    .how-footer a {
      color: var(--ochre-deep);
      font-weight: 600;
      border-bottom: 1px solid var(--ochre);
      padding-bottom: 1px;
    }

    /* ========== SECTION 2: ABOUT ========== */
    .about-section {
      padding: 120px 48px;
      background: var(--cream);
    }
    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 7fr 5fr;
      gap: 80px;
      align-items: center;
    }
    .about-text .section-heading { margin-bottom: 32px; }
    .about-text p {
      font-size: 17px;
      line-height: 1.7;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .about-text p:last-child { margin-bottom: 0; }
    .about-image {
      width: 100%;
      aspect-ratio: 4 / 5;
      background: var(--cream-warm);
      border-radius: 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px;
      border: 1px solid var(--border);
    }
    .about-image img {
      max-width: 70%;
      height: auto;
      margin-bottom: 24px;
    }
    .about-image img.about-photo {
      max-width: 100%;
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 20%;
      border-radius: 3px;
      margin-bottom: 18px;
    }
    .about-wordmark {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 600;
      font-size: clamp(40px, 6vw, 58px);
      color: var(--navy);
      letter-spacing: -0.01em;
      line-height: 1;
      margin-bottom: 24px;
      display: inline-flex;
      align-items: baseline;
    }
    .about-wordmark span { color: var(--ochre-deep); }
    .about-wordmark::after {
      content: ""; display: inline-block;
      width: 9px; height: 9px; border-radius: 50%;
      background: var(--ochre); margin-left: 6px;
      transform: translateY(-2px);
    }
    .about-image-caption {
      font-size: 13px;
      color: var(--slate);
      font-style: italic;
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid var(--ochre);
      width: 60%;
      max-width: 240px;
    }

    /* ========== SECTION 3: WHY ========== */
    .why-section {
      padding: 120px 48px;
      background: var(--cream-warm);
    }
    .why-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: left;
    }
    .why-inner .section-eyebrow { color: var(--ochre-deep); }
    .why-inner .section-heading {
      margin-bottom: 40px;
    }
    .why-inner p {
      font-size: 18px;
      line-height: 1.75;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .why-inner p:last-child {
      margin-bottom: 0;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      font-style: italic;
      color: var(--slate);
      font-size: 17px;
    }

    /* ========== SECTION 7: SAFETY ========== */
    .safety-section {
      padding: 120px 48px;
      background: var(--cream-warm);
    }
    .safety-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .safety-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }
    .safety-header .section-eyebrow { color: var(--ochre-deep); }
    .safety-header p {
      font-size: 17px;
      color: var(--slate);
      margin-top: 16px;
    }
    .safety-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .safety-col {
      background: var(--cream);
      border-radius: 8px;
      padding: 36px 32px;
      border: 1px solid var(--border);
    }
    .safety-col h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--ochre);
      display: inline-block;
    }
    .safety-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .safety-col li {
      font-size: 15px;
      color: var(--navy);
      line-height: 1.55;
      padding: 10px 0 10px 28px;
      position: relative;
      border-bottom: 1px solid var(--border);
    }
    .safety-col li:last-child { border-bottom: none; }
    .safety-col.secure li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 10px;
      color: var(--ochre-deep);
      font-weight: 700;
      font-size: 15px;
    }
    .safety-col.wont li::before {
      content: '✕';
      position: absolute;
      left: 0;
      top: 10px;
      color: var(--slate);
      font-weight: 600;
      font-size: 14px;
    }
    .safety-cta {
      text-align: center;
      margin-top: 56px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
      font-size: 17px;
      color: var(--slate);
      font-style: italic;
    }
    .safety-cta strong {
      color: var(--navy);
      font-weight: 600;
      font-style: normal;
    }

    /* ========== SECTION 7c: SAMPLE WORK ========== */
    .samples-section {
      padding: 100px 48px;
      background: var(--cream-warm);
    }
    .samples-inner {
      max-width: 1180px;
      margin: 0 auto;
    }
    .samples-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
    }
    .samples-header .section-eyebrow { color: var(--ochre-deep); }
    .samples-header p {
      font-size: 17px;
      color: var(--slate);
      margin-top: 16px;
    }
    .samples-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .sample-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }
    .sample-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(26, 42, 58, 0.12);
    }
    .sample-preview {
      aspect-ratio: 16 / 10;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-family: 'Inter', sans-serif;
      padding: 24px;
    }
    .sample-preview.harbour {
      background:
        linear-gradient(160deg, rgba(45,61,51,0.45) 0%, rgba(74,140,140,0.55) 100%),
        url('https://images.unsplash.com/photo-1756211202498-56e923f4cb57?fm=jpg&q=70&w=1200&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
    }
    .sample-preview.avalon {
      background:
        radial-gradient(circle at 30% 30%, rgba(46, 91, 255, 0.4) 0%, transparent 60%),
        linear-gradient(135deg, #0F1A2E 0%, #2E3F60 100%);
    }
    .sample-preview-name {
      font-family: 'Inter', sans-serif;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.02em;
      text-align: center;
      line-height: 1.1;
    }
    .sample-preview.harbour .sample-preview-name {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
    }
    .sample-preview-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: white;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.18);
    }
    .sample-body {
      padding: 28px 28px 30px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .sample-body h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .sample-body .sample-vibe {
      font-size: 13px;
      color: var(--ochre-deep);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 600;
      margin-bottom: 14px;
    }
    .sample-body p {
      font-size: 15px;
      color: var(--slate);
      line-height: 1.55;
      margin-bottom: 20px;
      flex: 1;
    }
    .sample-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--navy);
      font-weight: 600;
      font-size: 15px;
      border-bottom: 2px solid var(--ochre);
      padding-bottom: 4px;
      align-self: flex-start;
      transition: color 0.2s;
    }
    .sample-link:hover {
      color: var(--ochre-deep);
    }
    .samples-footer {
      text-align: center;
      margin-top: 48px;
      font-size: 14px;
      color: var(--slate);
      font-style: italic;
    }

    /* ========== SECTION 7b: BEYOND CHATBOT ========== */
    .beyond-section {
      padding: 100px 48px;
      background: var(--cream);
      border-top: 1px solid var(--border);
    }
    .beyond-inner {
      max-width: 1080px;
      margin: 0 auto;
      text-align: center;
    }
    .beyond-inner .section-eyebrow {
      color: var(--ochre-deep);
    }
    .beyond-inner .section-heading {
      margin: 0 auto 24px;
    }
    .beyond-intro {
      font-size: 18px;
      line-height: 1.7;
      color: var(--navy);
      margin-bottom: 48px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    .beyond-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 48px;
      text-align: left;
    }
    .beyond-card {
      background: var(--cream-warm);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px 28px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .beyond-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(26, 42, 58, 0.08);
    }
    .beyond-card-num {
      display: inline-block;
      width: 28px;
      height: 28px;
      background: var(--ochre);
      color: var(--navy-deep);
      border-radius: 50%;
      text-align: center;
      line-height: 28px;
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 14px;
    }
    .beyond-card h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .beyond-card p {
      font-size: 15px;
      color: var(--slate);
      line-height: 1.6;
      margin: 0;
    }
    .beyond-link {
      display: inline-block;
      color: var(--ochre-deep);
      font-weight: 600;
      font-size: 16px;
      border-bottom: 2px solid var(--ochre);
      padding-bottom: 4px;
      transition: color 0.2s;
    }
    .beyond-link:hover {
      color: var(--navy);
    }

    /* ========== SECTION 8: CONTACT ========== */
    .contact-section {
      padding: 120px 48px;
      background: var(--navy);
      color: var(--cream);
      text-align: center;
    }
    .contact-inner { max-width: 720px; margin: 0 auto; }
    .contact-section h2 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.1;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }
    .contact-section p {
      font-size: 18px;
      line-height: 1.6;
      color: rgba(250, 246, 238, 0.75);
      margin-bottom: 40px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .contact-btn {
      padding: 16px 32px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
      font-family: inherit;
      display: inline-block;
    }
    .contact-btn-primary { background: var(--ochre); color: var(--navy-deep); }
    .contact-btn-primary:hover { background: var(--ochre-deep); color: var(--cream); }
    .contact-btn-secondary {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(250, 246, 238, 0.35);
    }
    .contact-btn-secondary:hover { border-color: var(--cream); }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--navy-deep);
      color: rgba(250, 246, 238, 0.6);
      padding: 72px 48px 0;
      font-size: 14px;
      overflow: hidden;
    }
    .footer-inner {
      max-width: 1080px; margin: 0 auto;
      display: grid; grid-template-columns: 1.35fr 2fr;
      gap: 56px; padding-bottom: 56px;
    }
    .footer-brand-col { max-width: 340px; }
    .footer-logo {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 600; font-size: 27px;
      color: var(--cream); letter-spacing: -0.005em;
      display: inline-flex; align-items: baseline; margin-bottom: 18px;
    }
    .footer-logo span { color: var(--ochre); }
    .footer-logo::after {
      content: ""; display: inline-block;
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--ochre); margin-left: 4px; transform: translateY(-1px);
    }
    .footer-tagline { color: rgba(250, 246, 238, 0.62); line-height: 1.6; margin-bottom: 16px; font-size: 15px; }
    .footer-meta { color: rgba(250, 246, 238, 0.42); font-size: 13px; line-height: 1.6; }
    .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .footer-col h4 {
      color: var(--cream); font-size: 12px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px;
    }
    .footer-col a {
      display: block; color: rgba(250, 246, 238, 0.6);
      font-size: 14px; margin-bottom: 12px; transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--ochre); }
    .footer-bigmark {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 600;
      font-size: clamp(56px, 19vw, 220px);
      line-height: 1.05;
      text-align: center;
      color: var(--cream);
      letter-spacing: -0.02em;
      white-space: nowrap;
      overflow: hidden;
      max-width: 1080px;
      margin: 0 auto;
      padding: 30px 0 36px;
      user-select: none;
    }
    .footer-bigmark span { color: var(--ochre); }
    .footer-bigmark::after {
      content: ""; display: inline-block;
      width: 0.085em; height: 0.085em; border-radius: 50%;
      background: var(--ochre); margin-left: 0.06em;
    }
    .footer-bottom {
      max-width: 1080px; margin: 0 auto;
      border-top: 1px solid rgba(250, 246, 238, 0.12);
      padding: 22px 0 30px;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
      font-size: 13px; color: rgba(250, 246, 238, 0.42);
    }
    .footer-bottom .footer-brand { color: var(--cream); font-weight: 600; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 900px) {
      .nav { padding: 20px 24px; }
      .nav-links { gap: 20px; }
      .nav-links a:not(.nav-cta) { display: none; }
      .hero { padding: 100px 24px 60px; min-height: 100vh; }
      .screenshots-section, .industries-section, .features-section, .how-section, .about-section, .contact-section, .demo-section, .problem-section, .safety-section, .beyond-section { padding-left: 24px; padding-right: 24px; }
      .safety-grid { grid-template-columns: 1fr; gap: 24px; }
      .beyond-cards { grid-template-columns: 1fr; gap: 16px; }
      .samples-grid { grid-template-columns: 1fr; gap: 20px; }
      .samples-section { padding-left: 24px; padding-right: 24px; }
      .industries-grid { grid-template-columns: 1fr; gap: 14px; }
      .screenshots-grid { grid-template-columns: 1fr; gap: 20px; }
      .demo-teaser { grid-template-columns: 1fr; gap: 24px; }
      .feature-row { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
      .demo-inner { grid-template-columns: 1fr; gap: 48px; }
      .how-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-image { max-width: 400px; margin: 0 auto; }
      .footer { padding: 56px 24px 0; }
      .footer-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 44px; }
      .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; }
    }
    @media (max-width: 480px) {
      .footer-links { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { justify-content: center; text-align: center; }
    }
    @media (max-width: 540px) {
      .how-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 38px; }
      .section-heading { font-size: 28px; }
      .contact-section h2 { font-size: 30px; }
    }
  
    /* ========== MULTIPAGE: SOLID NAV ========== */
    .site-nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--navy-deep);
      border-bottom: 1px solid rgba(250, 246, 238, 0.08);
      padding: 16px 48px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .site-nav .logo {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 600; font-size: 24px;
      color: var(--cream); letter-spacing: -0.005em;
      display: inline-flex; align-items: baseline;
    }
    .site-nav .logo span { color: var(--ochre); }
    .site-nav .logo::after {
      content: ""; display: inline-block;
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--ochre); margin-left: 4px;
      transform: translateY(-1px);
    }
    .site-nav-links { display: flex; gap: 30px; align-items: center; }
    .site-nav-links a { color: rgba(250, 246, 238, 0.78); font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .site-nav-links a:hover { color: var(--cream); }
    .site-nav-links a.active { color: var(--cream); font-weight: 700; }
    .site-nav-cta { background: var(--ochre); color: var(--navy-deep) !important; padding: 10px 20px; border-radius: 4px; font-weight: 600; }
    .site-nav-cta:hover { background: var(--ochre-deep); color: var(--cream) !important; }
    .nav-toggle {
      display: none; background: none; border: 0; cursor: pointer;
      color: var(--cream); font-size: 26px; line-height: 1; padding: 4px 6px;
    }
    @media (max-width: 820px) {
      .site-nav { padding: 14px 20px; }
      .nav-toggle { display: inline-flex; align-items: center; }
      .site-nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--navy-deep);
        border-bottom: 1px solid rgba(250, 246, 238, 0.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
        padding: 6px 0;
      }
      .site-nav-links.open { display: flex; }
      .site-nav-links a:not(.site-nav-cta) { display: block; padding: 14px 22px; font-size: 16px; }
      .site-nav-cta { background: transparent; color: var(--ochre) !important; border-radius: 0; padding: 14px 22px; margin-top: 4px; border-top: 1px solid rgba(250, 246, 238, 0.08); }
      .site-nav-cta:hover { background: rgba(255, 255, 255, 0.04); color: var(--cream) !important; }
    }

    /* ========== MULTIPAGE: PAGE HERO ========== */
    .page-hero {
      background: var(--navy-deep);
      color: var(--cream);
      padding: 90px 48px 80px;
      text-align: center;
    }
    .page-hero .eyebrow {
      display: inline-block; color: var(--ochre);
      text-transform: uppercase; letter-spacing: 0.16em;
      font-size: 12px; font-weight: 600; margin-bottom: 18px;
    }
    .page-hero h1 {
      font-size: clamp(34px, 5vw, 56px); font-weight: 600;
      letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px;
    }
    .page-hero p {
      font-size: clamp(16px, 1.3vw, 19px); color: rgba(250,246,238,0.82);
      max-width: 620px; margin: 0 auto; line-height: 1.6;
    }
    @media (max-width: 768px) { .page-hero { padding: 64px 24px 56px; } }

    /* ========== MULTIPAGE: HOME PRODUCT CARDS ========== */
    .home-products { padding: 110px 48px; background: var(--cream); }
    .home-products-inner { max-width: 1040px; margin: 0 auto; }
    .home-products-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
    .home-products-header .section-eyebrow { color: var(--ochre-deep); }
    .home-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    .home-product-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; padding: 44px 40px;
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex; flex-direction: column;
    }
    .home-product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,26,40,0.1); border-color: var(--ochre); }
    .home-product-card .card-eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--ochre-deep); margin-bottom: 14px; }
    .home-product-card h3 { font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
    .home-product-card p { color: var(--slate); font-size: 16px; line-height: 1.6; margin-bottom: 28px; flex: 1; }
    .home-product-card .card-link { color: var(--ochre-deep); font-weight: 600; font-size: 15px; border-bottom: 2px solid var(--ochre); padding-bottom: 4px; align-self: flex-start; }
    .home-product-card:hover .card-link { color: var(--navy); }
    @media (max-width: 768px) {
      .home-products { padding: 64px 24px; }
      .home-products-grid { grid-template-columns: 1fr; gap: 20px; }
    }

    /* Who I build for */
    .who-section { padding: 100px 48px; background: var(--white); }
    .who-inner { max-width: 1040px; margin: 0 auto; }
    .who-header { text-align: center; max-width: 640px; margin: 0 auto 54px; }
    .who-header .section-eyebrow { color: var(--ochre-deep); }
    .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .who-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 34px 28px; transition: transform .2s, box-shadow .2s, border-color .2s; }
    .who-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,26,40,0.1); border-color: var(--ochre); }
    .who-card .ic { width: 52px; height: 52px; border-radius: 13px; background: rgba(200,146,61,.12); color: var(--ochre-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
    .who-card .ic svg { width: 28px; height: 28px; }
    .who-card h3 { font-family: 'Fraunces', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
    .who-card p { color: var(--slate); font-size: 15px; line-height: 1.62; }
    .who-card .eg { margin-top: 14px; font-size: 13px; color: var(--ochre-deep); font-weight: 600; }
    @media (max-width: 820px) {
      .who-section { padding: 64px 24px; }
      .who-grid { grid-template-columns: 1fr; gap: 18px; }
    }

    /* CTA band reused on inner pages */
    .page-cta-band { padding: 90px 48px; background: var(--cream-warm); text-align: center; }
    .page-cta-band h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 600; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 18px; }
    .page-cta-band p { font-size: 18px; color: var(--slate); max-width: 540px; margin: 0 auto 32px; }
    .page-cta-band a { display: inline-block; background: var(--ochre); color: var(--navy-deep); padding: 15px 32px; border-radius: 4px; font-weight: 600; font-size: 16px; transition: background 0.2s; }
    .page-cta-band a:hover { background: var(--ochre-deep); color: var(--cream); }
    @media (max-width: 768px) { .page-cta-band { padding: 64px 24px; } }

    /* ========== WEBSITE DESIGN: VOICE DEMOS ========== */
    .voice-demos { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
    .voice-card { border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--border); }
    .voice-head { display: flex; align-items: center; gap: 14px; padding: 26px 28px 14px; }
    .voice-mark { width: 46px; height: 46px; flex-shrink: 0; }
    .voice-name { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; }
    .voice-tone { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-top: 6px; }
    .voice-chat { padding: 8px 28px 6px; display: flex; flex-direction: column; gap: 10px; }
    .voice-chat .bubble { max-width: 90%; padding: 12px 16px; font-size: 15px; line-height: 1.5; }
    .voice-chat .bubble.patient { align-self: flex-end; border-radius: 16px 16px 4px 16px; }
    .voice-chat .bubble.bot { align-self: flex-start; border-radius: 16px 16px 16px 4px; }
    .voice-foot { margin-top: auto; padding: 18px 28px 26px; }
    .voice-btn { display: inline-block; padding: 12px 22px; border-radius: 6px; font-weight: 600; font-size: 15px; transition: background 0.2s, color 0.2s; }

    .voice-card.harbour { background: #F8F2E7; border-color: #E2D7C2; }
    .voice-card.harbour .voice-name { color: #2D3D33; font-family: 'Fraunces', Georgia, serif; }
    .voice-card.harbour .voice-tone { color: #2F6A6A; }
    .voice-card.harbour .bubble.patient { background: #E8DCC8; color: #2D3D33; }
    .voice-card.harbour .bubble.bot { background: #4A8C8C; color: #F8F2E7; }
    .voice-card.harbour .voice-btn { background: #C97B5A; color: #FFFFFF; }
    .voice-card.harbour .voice-btn:hover { background: #A8623F; }

    .voice-card.avalon { background: #0F1A2E; border-color: #0F1A2E; }
    .voice-card.avalon .voice-name { color: #FAFBFC; font-family: 'Inter', sans-serif; font-weight: 700; }
    .voice-card.avalon .voice-tone { color: #6E8BFF; }
    .voice-card.avalon .bubble.patient { background: #25324A; color: #FAFBFC; }
    .voice-card.avalon .bubble.bot { background: #2E5BFF; color: #FFFFFF; }
    .voice-card.avalon .voice-btn { background: #2E5BFF; color: #FFFFFF; }
    .voice-card.avalon .voice-btn:hover { background: #1E40CC; }

    @media (max-width: 768px) { .voice-demos { grid-template-columns: 1fr; gap: 20px; } }

    /* ========== WEBSITE DESIGN: TRY IT OUT BAND ========== */
    .try-band { margin-top: 36px; text-align: center; background: var(--cream-warm); border: 1px solid var(--border); border-radius: 16px; padding: 48px 32px; }
    .try-band h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 12px; }
    .try-band > p { font-size: 16px; color: var(--slate); max-width: 560px; margin: 0 auto 28px; line-height: 1.6; }
    .try-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .try-btn { display: inline-block; padding: 14px 26px; border-radius: 7px; font-weight: 600; font-size: 15px; color: #FFFFFF; transition: background 0.2s; }
    .try-btn.harbour { background: #2F6A6A; }
    .try-btn.harbour:hover { background: #265656; }
    .try-btn.avalon { background: #2E5BFF; }
    .try-btn.avalon:hover { background: #1E40CC; }
    .try-note { font-size: 13px; color: var(--slate); margin: 22px auto 0; font-style: italic; }
    @media (max-width: 768px) { .try-band { padding: 34px 20px; } }

    /* ========== WEBSITE DESIGN: WHAT'S INCLUDED ========== */
    .includes-section { padding: 110px 48px; background: var(--white); }
    .includes-header { text-align: center; max-width: 640px; margin: 0 auto; }
    .includes-header .section-eyebrow { color: var(--ochre-deep); }
    .includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 36px; max-width: 1000px; margin: 50px auto 0; }
    .include-item { display: flex; gap: 14px; align-items: flex-start; }
    .include-check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--ochre); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; line-height: 1; }
    .include-text h4 { font-size: 17px; color: var(--navy); font-weight: 600; margin: 1px 0 5px; letter-spacing: -0.01em; }
    .include-text p { font-size: 14px; color: var(--slate); line-height: 1.55; margin: 0; }
    @media (max-width: 900px) { .includes-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 768px) { .includes-section { padding: 64px 24px; } .includes-grid { grid-template-columns: 1fr; gap: 24px; } }

    /* ========== SECURITY: WHERE YOUR DATA LIVES ========== */
    .data-panel { max-width: 760px; margin: 56px auto 0; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 38px 42px; text-align: center; }
    .data-panel h3 { font-size: 22px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 14px; }
    .data-panel p { font-size: 16px; color: var(--slate); line-height: 1.7; margin: 0; }
    @media (max-width: 768px) { .data-panel { padding: 28px 22px; margin-top: 40px; } }
    .safety-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 40px auto 0; }
    .safety-q-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px 28px; }
    .safety-q-card h3 { font-size: 18px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 12px; }
    .safety-q-card p { font-size: 15px; color: var(--slate); line-height: 1.65; margin: 0; }
    @media (max-width: 900px) { .safety-cards { grid-template-columns: 1fr; gap: 18px; } }

    /* ========== HOME: WHAT I DO STRIP ========== */
    .intro-strip { padding: 56px 48px; background: var(--cream-warm); border-bottom: 1px solid var(--border); }
    .intro-strip-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
    .intro-strip-lead { font-size: clamp(18px, 2vw, 23px); color: var(--navy); font-weight: 500; line-height: 1.5; max-width: 740px; margin: 0 auto 28px; letter-spacing: -0.01em; }
    .intro-points { display: flex; justify-content: center; gap: 18px 36px; flex-wrap: wrap; }
    .intro-point { display: flex; align-items: center; gap: 9px; font-size: 15px; color: var(--slate); font-weight: 500; }
    .intro-point .pc { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--ochre); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
    @media (max-width: 768px) { .intro-strip { padding: 40px 24px; } }

    /* ========== HOME: SEE IT LIVE ========== */
    .home-demo { padding: 100px 48px; background: var(--navy-deep); text-align: center; }
    .home-demo .section-eyebrow { color: var(--ochre); }
    .home-demo h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 600; color: var(--cream); letter-spacing: -0.02em; margin: 12px 0 14px; }
    .home-demo > p { font-size: 17px; color: rgba(250, 246, 238, 0.78); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
    .home-demo-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .home-demo-btn { display: inline-block; padding: 14px 26px; border-radius: 7px; font-weight: 600; font-size: 15px; color: #FFFFFF; transition: background 0.2s; }
    .home-demo-btn.harbour { background: #2F6A6A; }
    .home-demo-btn.harbour:hover { background: #265656; }
    .home-demo-btn.avalon { background: #2E5BFF; }
    .home-demo-btn.avalon:hover { background: #1E40CC; }
    @media (max-width: 768px) { .home-demo { padding: 64px 24px; } }

/* remove ochre dot from Skjei AI wordmark everywhere */
.site-nav .logo::after, .about-wordmark::after, .footer-logo::after, .footer-bigmark::after { content: none !important; display: none !important; }

/* ===== Mobile: keep the "how you're notified" inbox mockup readable on phones ===== */
@media (max-width: 768px) {
  .dentist-demo-section .demo-inner.reverse { direction: ltr; }
  .desk-setup { max-width: 460px; }
  .monitor { padding: 11px 11px 22px; }
  /* the fixed 16:10 screen is too short on a phone and clips the inbox, so give it real height */
  .monitor-screen { aspect-ratio: auto; height: 430px; }
  .gmail-row { padding-top: 9px; padding-bottom: 9px; }
  .gmail-row-sender { font-size: 12px; }
  .gmail-row-subject { font-size: 11px; }
  .gmail-row-time { font-size: 10px; }
  .gmail-email-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .desk-setup { max-width: 100%; }
  .monitor-screen { height: 410px; }
  .desk-accessories { gap: 16px; margin-top: 26px; }
}

