/* SEEG Confirmation Page Styles */
/* Daily Mentor call-scheduled inspired - Step 1/Step 2 layout */
/* Strong, masculine, dark navy styling */

:root {
  --primary-dark: #0a0f1a;
  --headline-navy: #1a1a2e;  /* True dark navy/charcoal for headlines */
  --card-bg: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --accent-teal: #14b8a6;
  --accent-purple: #7c3aed;  /* Keep for logo only */
  --border-color: #e5e7eb;
  --section-bg: #f9fafb;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--card-bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* Header */
.confirmation-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.confirmation-header .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.logo span {
  color: var(--accent-teal);
}

/* Hero Section */
.confirmation-hero {
  padding: 60px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.confirmation-hero .container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-title .emoji {
  font-size: 2.25rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Status Cards */
.status-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.status-card {
  background: var(--section-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.status-icon {
  width: 48px;
  height: 48px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-icon svg {
  width: 24px;
  height: 24px;
  color: #22c55e;
}

.status-icon.email {
  background: #dbeafe;
}

.status-icon.email svg {
  color: #3b82f6;
}

.status-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.status-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Steps Section */
.steps-section {
  padding: 60px 24px;
}

.steps-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Step Block */
.step-block {
  margin-bottom: 60px;
}

.step-block:last-child {
  margin-bottom: 0;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 12px;
}

.step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 600px;
}

.step-instructions {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.step-instructions strong {
  color: var(--text-primary);
}

/* Screenshot Container */
.screenshot-container {
  background: var(--section-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.screenshot-placeholder {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  min-height: 300px;
}

.email-mockup {
  font-size: 0.875rem;
}

.email-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.email-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.email-meta {
  flex: 1;
}

.email-from {
  font-weight: 600;
  color: var(--text-primary);
}

.email-subject {
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.email-body {
  padding: 16px;
  background: #f3f4f6;
  border-radius: 8px;
  margin-bottom: 16px;
}

.calendar-banner {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.calendar-banner p {
  font-size: 0.8125rem;
  color: #92400e;
  flex: 1;
}

.add-calendar-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  white-space: nowrap;
}

/* Arrow Annotations */
.annotation {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
}

.annotation-arrow {
  width: 60px;
  height: 40px;
}

.annotation-text {
  background: #ef4444;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.annotation.top-left {
  top: 160px;
  left: -20px;
}

.annotation.bottom-left {
  bottom: 80px;
  left: -20px;
}

/* Calendar Event Mockup */
.event-mockup {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-top: 16px;
}

.event-date {
  text-align: center;
  padding: 8px 12px;
  background: #3b82f6;
  border-radius: 8px;
  color: white;
  min-width: 60px;
}

.event-date .month {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .weekday {
  font-size: 0.625rem;
}

.event-details {
  flex: 1;
}

.event-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.event-time,
.event-location {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.event-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.event-action-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--text-primary);
}

.event-action-btn.primary {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

/* Video Section */
.video-section {
  margin-top: 16px;
}

.video-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-align: center;
}

/* Video Embed Wrapper - supports Wistia, Loom, YouTube */
.video-embed-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* For responsive iframes */
.video-embed-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.video-container {
  position: relative;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.play-button-large {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button-large:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.play-button-large svg {
  width: 32px;
  height: 32px;
  color: #1f2937;
  margin-left: 4px;
}

.video-duration {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ================================================
   LOOM-STYLE VIDEO PLAYER
   ================================================ */

.loom-player {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: #1a1a2e;
}

/* Title Bar */
.loom-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.loom-title {
  color: white;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin-right: 16px;
}

.loom-title-actions {
  display: flex;
  gap: 8px;
}

.loom-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.loom-icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Video Area */
.loom-video-area {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play Button Overlay */
.loom-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease;
}

.loom-play-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.loom-play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.loom-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.loom-play-btn svg {
  width: 36px;
  height: 36px;
  color: #1a1a2e;
  margin-left: 4px;
}

/* Duration Badge */
.loom-duration-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  color: white;
  font-size: 0.8125rem;
  font-weight: 500;
}

.loom-duration-badge svg {
  opacity: 0.8;
}

/* Progress Bar */
.loom-progress-bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.loom-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent-teal);
  transition: width 0.3s ease;
}

.loom-progress-segments {
  position: absolute;
  inset: 0;
  display: flex;
}

.loom-progress-segments .segment {
  flex: 1;
  border-right: 2px solid rgba(0, 0, 0, 0.3);
}

.loom-progress-segments .segment:last-child {
  border-right: none;
}

/* Responsive */
@media (max-width: 768px) {
  .loom-title-bar {
    padding: 10px 12px;
  }

  .loom-title {
    font-size: 0.8125rem;
  }

  .loom-play-btn {
    width: 72px;
    height: 72px;
  }

  .loom-play-btn svg {
    width: 28px;
    height: 28px;
  }

  .loom-duration-badge {
    bottom: 12px;
    left: 12px;
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

/* ================================================
   END LOOM-STYLE VIDEO PLAYER
   ================================================ */

/* ================================================
   STEP 3: MEET THE TEAM SECTION
   ================================================ */

.team-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0a0f1a 0%, #1a1a2e 50%, #0f172a 100%);
  color: white;
}

.team-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.team-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 12px;
}

.team-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-photo {
  position: relative;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center top;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.9) 0%, rgba(10, 15, 26, 0.3) 50%, transparent 100%);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.9375rem;
  color: var(--accent-teal);
  font-weight: 500;
  margin-bottom: 8px;
}

.team-credential {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ================================================
   RESULTS/TESTIMONIALS SECTION
   ================================================ */

.results-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #0f172a 0%, #1a1a2e 100%);
  color: white;
}

.results-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.results-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 12px;
}

.results-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-video {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.testimonial-card:hover .testimonial-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.testimonial-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.testimonial-play-btn:hover {
  transform: scale(1.1);
}

.testimonial-play-btn svg {
  width: 22px;
  height: 22px;
  color: #1a1a2e;
  margin-left: 3px;
}

.testimonial-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
}

.testimonial-info {
  padding: 20px;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: 0.8125rem;
  color: var(--accent-teal);
  font-weight: 500;
}

/* ================================================
   RESPONSIVE: TEAM & TESTIMONIALS
   ================================================ */

@media (max-width: 900px) {
  .team-grid,
  .testimonial-videos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-section,
  .results-section {
    padding: 60px 24px;
  }

  .team-title,
  .results-title {
    font-size: 1.75rem;
  }

  .team-grid,
  .testimonial-videos {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-subtitle,
  .results-subtitle {
    margin-bottom: 32px;
  }
}

/* ================================================
   END TEAM & TESTIMONIALS
   ================================================ */

/* Footer */
.confirmation-footer {
  padding: 40px 24px;
  background: var(--section-bg);
  border-top: 1px solid var(--border-color);
}

.confirmation-footer .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-weight: 700;
  color: var(--text-secondary);
}

.footer-logo span {
  color: var(--accent-teal);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 8px;
  }

  .step-title {
    font-size: 1.75rem;
  }

  .annotation {
    display: none;
  }

  .confirmation-footer .container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .calendar-banner {
    flex-direction: column;
    text-align: center;
  }
}
