CHAPTER 03

Digital CBT-I Fundamentals

Evidence-Based Cognitive Behavioral Therapy for Insomnia in Digital Format

Learning Objectives: Master the five core components of CBT-I (sleep restriction, stimulus control, cognitive restructuring, sleep hygiene, relaxation training), understand mechanisms of action, learn implementation strategies for digital delivery, and explore evidence for efficacy.

CBT-I Overview: The Gold Standard Treatment

Cognitive Behavioral Therapy for Insomnia (CBT-I) is the first-line treatment for chronic insomnia, recommended by the American College of Physicians, American Academy of Sleep Medicine, and European Sleep Research Society. Unlike pharmacological approaches, CBT-I addresses the underlying behavioral and cognitive factors perpetuating insomnia, producing sustained improvements that persist long after treatment ends.

The treatment typically consists of 4-8 weekly sessions delivered individually or in groups. Digital CBT-I (dCBT-I) translates these protocols into self-guided or semi-guided online programs, maintaining the core therapeutic components while enhancing accessibility, scalability, and cost-effectiveness. Meta-analyses demonstrate that dCBT-I achieves effect sizes comparable to in-person therapy, with large effect sizes (Cohen's d = 0.8-1.0) for primary outcomes.

Evidence Base

Outcome Measure Baseline Post-Treatment Effect Size Persistence
Sleep Onset Latency 45-60 min 20-25 min d = 0.87 12+ months
Wake After Sleep Onset 60-90 min 25-35 min d = 0.65 12+ months
Sleep Efficiency 70-75% 85-90% d = 1.02 12+ months
Insomnia Severity Index 18-22 (severe) 8-10 (subthreshold) d = 1.15 6-12 months
Depression Symptoms Moderate Mild/minimal d = 0.39 6+ months

Component 1: Sleep Restriction Therapy

Sleep restriction therapy (SRT) is arguably the most powerful component of CBT-I, producing rapid improvements in sleep consolidation. The mechanism operates through sleep homeostasis—by restricting time in bed to match actual sleep time, we increase sleep drive (Process S), leading to faster sleep onset, fewer awakenings, and deeper sleep.

Implementation Protocol

Step-by-Step Sleep Restriction

Step 1: Calculate Average Total Sleep Time (TST)

Using sleep diary data from 1-2 weeks, calculate the average total sleep time across all nights. For example: 6.5 hours average TST.

Step 2: Set Initial Sleep Window

The sleep window equals TST + 30 minutes, with a minimum of 5 hours to maintain safety. For our example: 7 hours sleep window (6.5 + 0.5).

Step 3: Determine Schedule

Based on desired wake time (e.g., 6:00 AM), calculate bedtime (11:00 PM for 7-hour window). This schedule must be consistent 7 days/week.

Step 4: Weekly Adjustments

If sleep efficiency ≥ 90%: Increase sleep window by 15-30 minutes
If sleep efficiency 85-89%: No change
If sleep efficiency < 85%: Decrease sleep window by 15-30 minutes

Step 5: Stabilization

Continue adjustments until sleep efficiency stabilizes at 85-90% for 2+ weeks. Then transition to maintenance with more flexibility.

Safety Considerations

Sleep restriction should not be used with patients who have bipolar disorder (may trigger mania), seizure disorders (sleep deprivation lowers seizure threshold), or occupations requiring high alertness (e.g., commercial driving). A 5-hour minimum sleep window prevents excessive sleep deprivation. Patients should be warned about temporary increased daytime sleepiness during initial weeks and advised to avoid driving if severely impaired.

// Sleep restriction calculation algorithm
interface SleepData {
  totalSleepTime: number; // average TST in minutes
  currentSleepEfficiency: number; // percentage
  desiredWakeTime: string; // "06:00"
  currentSleepWindow: number; // minutes
}

function calculateSleepRestriction(data: SleepData) {
  // Initial prescription
  const minimumWindow = 300; // 5 hours in minutes
  const bufferTime = 30; // minutes
  
  let prescribedWindow = data.totalSleepTime + bufferTime;
  prescribedWindow = Math.max(prescribedWindow, minimumWindow);
  
  // Weekly adjustment logic
  let adjustment = 0;
  if (data.currentSleepEfficiency >= 90) {
    adjustment = 15; // expand window
  } else if (data.currentSleepEfficiency < 85) {
    adjustment = -15; // restrict further
  }
  
  const newWindow = Math.max(
    data.currentSleepWindow + adjustment,
    minimumWindow
  );
  
  // Calculate bedtime from wake time
  const [wakeHour, wakeMin] = data.desiredWakeTime.split(':').map(Number);
  const bedtimeMinutes = (wakeHour * 60 + wakeMin) - newWindow;
  const bedHour = Math.floor(bedtimeMinutes / 60) % 24;
  const bedMin = bedtimeMinutes % 60;
  
  return {
    prescribedBedtime: `${bedHour.toString().padStart(2, '0')}:${bedMin.toString().padStart(2, '0')}`,
    prescribedWakeTime: data.desiredWakeTime,
    sleepWindowMinutes: newWindow,
    sleepWindowHours: (newWindow / 60).toFixed(1),
    adjustment: adjustment
  };
}

Component 2: Stimulus Control Therapy

Stimulus control therapy addresses conditioned arousal—the association between the bed/bedroom and wakefulness, frustration, and anxiety that develops in chronic insomnia. The goal is to re-associate the bed exclusively with sleep (and sex), strengthening the bed as a sleep cue while weakening arousal associations.

Core Instructions

Rule Rationale Digital Implementation
Go to bed only when sleepy Ensures adequate sleep drive is present App prompts: "Are you experiencing physical sleepiness signs (heavy eyelids, yawning)?"
Use bed only for sleep and sex Removes arousing activities from sleep environment Education module + daily reminders to move non-sleep activities elsewhere
If unable to sleep within 20 min, get up Prevents bed-wakefulness association from forming Sleep timer with gentle notification; suggestions for relaxing activities
Return to bed only when sleepy again Re-attempts sleep only when sufficient drive accumulated Guided activities (reading, relaxation) with sleepiness check-ins
Repeat getting up as often as needed Consistency strengthens bed-sleep association Tracking and encouragement for adherence across multiple cycles
Wake at same time every morning Anchors circadian rhythm and maintains homeostatic drive Smart alarm with consistent wake time; no snooze options
No daytime napping Preserves sleep drive for nighttime Activity tracking with alerts if prolonged inactivity detected

The "20-minute rule" requires some flexibility in digital implementation. Exact timing is less important than the principle: don't lie in bed awake experiencing frustration and anxiety. Some programs use 15-30 minute windows, and subjective assessment ("if you feel like you've been awake for 20 minutes") works as well as objective timing.

Component 3: Cognitive Restructuring

Cognitive therapy targets the maladaptive thoughts and beliefs about sleep that perpetuate insomnia. These cognitions increase anxiety and arousal, making sleep more difficult. Common dysfunctional beliefs include catastrophizing about sleep loss consequences, unrealistic sleep expectations, and misattribution of daytime problems to sleep.

Common Dysfunctional Sleep Beliefs

Dysfunctional Belief Cognitive Distortion Restructured Thought
"I need 8 hours of sleep or I'll be nonfunctional" All-or-nothing thinking, catastrophizing "Sleep needs vary; I can function adequately on less than ideal sleep"
"Poor sleep will make me sick" Catastrophizing, overgeneralization "One night of poor sleep doesn't cause illness; my body is resilient"
"I must control my sleep" Excessive need for control "Sleep is involuntary; trying to force it creates arousal"
"If I don't sleep tonight, tomorrow will be terrible" Fortune telling, catastrophizing "I've had poor sleep before and managed; I'll adapt as needed"
"My insomnia is permanent and unfixable" Hopelessness, overgeneralization "Insomnia is treatable; I'm actively working on evidence-based solutions"
"I must make up for lost sleep" Faulty compensation strategy "Sleeping in or napping worsens insomnia; maintaining schedule is crucial"

Digital cognitive therapy uses interactive modules with thought records, automated cognitive restructuring exercises, and psychoeducation about sleep misconceptions. Thought records help patients identify triggering situations, automatic thoughts, emotional responses, and generate balanced alternative thoughts. Over time, this reduces sleep-related anxiety and performance pressure.

// Cognitive restructuring thought record
interface ThoughtRecord {
  situation: string;
  automaticThought: string;
  emotion: string;
  emotionIntensity: number; // 0-100
  evidence_for: string[];
  evidence_against: string[];
  balancedThought: string;
  newEmotionIntensity: number; // 0-100
}

// Example
const record: ThoughtRecord = {
  situation: "Lying in bed at 2 AM, unable to sleep",
  automaticThought: "I won't sleep at all tonight and tomorrow will be ruined",
  emotion: "Anxious, frustrated",
  emotionIntensity: 85,
  evidence_for: [
    "It's already 2 AM",
    "I feel wide awake"
  ],
  evidence_against: [
    "I've had poor nights before and still functioned",
    "I might still get 3-4 hours if I relax",
    "Worrying about it makes sleep harder",
    "Sleep drive will build for tomorrow"
  ],
  balancedThought: "This is a difficult night, but I've managed before. Accepting it rather than fighting reduces anxiety. I'll practice relaxation and trust my sleep drive.",
  newEmotionIntensity: 45
};

Component 4: Sleep Hygiene Education

Sleep hygiene refers to behavioral and environmental factors that promote or interfere with sleep. While sleep hygiene alone is insufficient to treat chronic insomnia, it provides an important foundation for other CBT-I components. Digital platforms excel at delivering comprehensive sleep hygiene education with personalized recommendations.

Evidence-Based Sleep Hygiene Principles

Environmental Factors

Behavioral Factors

Component 5: Relaxation Training

Relaxation techniques reduce physiological and cognitive arousal, facilitating sleep onset and return to sleep after awakenings. Multiple modalities exist, allowing personalization to individual preferences and needs. Digital delivery enables guided audio sessions, visual demonstrations, and progress tracking.

Relaxation Techniques

Technique Description Duration Best For
Progressive Muscle Relaxation (PMR) Systematic tensing and releasing muscle groups 15-20 min Physical tension, somatic anxiety
Diaphragmatic Breathing Slow, deep breathing from the diaphragm 5-10 min Racing heart, hyperventilation, quick technique
Guided Imagery Visualizing peaceful, calming scenes 10-15 min Cognitive arousal, racing thoughts
Autogenic Training Self-suggestions of warmth and heaviness 10-15 min Whole-body relaxation, autonomic regulation
Mindfulness Meditation Non-judgmental awareness of present moment 10-20 min Rumination, worry, acceptance of sleeplessness

Important principle: Relaxation exercises should not be used while lying in bed trying to fall asleep. This violates stimulus control principles. Instead, they should be practiced during a pre-sleep wind-down routine (30-60 minutes before bed) or during middle-of-night awakenings after getting out of bed. Regular daytime practice builds skill before applying at night.

Key Takeaways

Essential Points to Remember

Review Questions

Test Your Understanding

  1. Explain the mechanism by which sleep restriction therapy improves sleep. Why is a 5-hour minimum sleep window recommended?
  2. List the seven core stimulus control instructions. For each, explain the underlying rationale and how it breaks conditioned arousal.
  3. What are common dysfunctional beliefs about sleep in insomnia patients? Provide three examples and demonstrate cognitive restructuring for each.
  4. Describe the sleep restriction calculation algorithm. If a patient averages 5.5 hours total sleep time with desired wake time of 7:00 AM, what would be the prescribed sleep schedule?
  5. Why is sleep hygiene alone insufficient as a standalone treatment for chronic insomnia? How does it complement other CBT-I components?
  6. Compare five relaxation techniques in terms of mechanisms, duration, and ideal use cases. When should relaxation NOT be practiced?
  7. What is the evidence base for digital CBT-I compared to in-person therapy? What outcomes show the most substantial improvements?
  8. Identify contraindications for sleep restriction therapy. What safety measures should digital platforms implement?

弘益人間 (Hongik Ingan)

"Benefit All Humanity"

CBT-I represents one of the most powerful examples of evidence-based medicine—a treatment that fundamentally changes lives without pharmaceuticals, invasive procedures, or expensive equipment. Yet for decades, its benefits have been limited to the privileged few with access to specialized therapists.

Digital delivery embodies 弘益人間 by democratizing access to this life-changing treatment. A rural farmer in Korea, a single parent in Detroit, a elderly person in rural Montana—all can now access the same evidence-based protocols previously available only in major medical centers. Geography, income, and specialist availability no longer determine who receives effective care.

As we build these digital systems, we carry profound responsibility. We must maintain clinical rigor and evidence-based standards while ensuring accessibility, usability, and cultural sensitivity. Every algorithmic decision, every user interface choice, every data privacy protection serves the ultimate goal: benefiting all humanity by restoring healthy sleep to those who suffer.