/* Adobe Project Page Styles - Typography now handled by common.css */

/* Adobe-specific tools section styling */
#tools {
  border-left: 4px solid #4a90e2;
}

/* ========================================
   HERO SNAPSHOT (TOOLS + VIDEO)
   ======================================== */

#adobe-hero {
  width: 100%;
  padding: 28px 5% 32px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #ffffff 0%, #e4f0ff 100%);
  margin-bottom: 40px;
}

#adobe-hero-meta {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-meta-item h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a90e2;
  margin: 0 0 4px;
}

.hero-meta-item p {
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
}

#adobe-hero-vid {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 425px;
  max-height: 425px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #adobe-hero {
    padding: 20px 4% 24px;
    margin-bottom: 32px;
  }

  #adobe-hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  #adobe-hero-vid {
    height: 220px;
    max-height: 220px;
  }
}

/* Hero CTA button */

.adobe-hero-cta {
  max-width: 1200px;
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.adobe-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #4a90e2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'BasisGrotesk';
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(74, 144, 226, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.adobe-hero-button:hover {
  background-color: #357abd;
  box-shadow: 0 6px 24px rgba(74, 144, 226, 0.6);
  transform: translateY(-2px);
}

/* Problem / opportunity cards under overview */

#problem-solution-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.problem-card,
.solution-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}

.problem-card h3,
.solution-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.problem-card p,
.solution-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #problem-solution-grid {
    flex-direction: column;
    gap: 16px;
  }
}

#about-desc {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
}

#adobe-icon {
  width: 7%;
  height: fit-content;
}

/* Progress section styling */
#progress-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  border-left: 4px solid #4a90e2;
}

.progress-item h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #4a4a4a;
}

.progress-item p {
  margin-bottom: 0;
  color: #666;
}

/* Features section styling */
#features-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.feature-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.feature-item h4 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #4a4a4a;
}

.feature-item p {
  margin-bottom: 0;
  color: #666;
}

.icon-area {
  display: flex;
  gap: 18px;
  align-items: center;
}

.icon-area img {
  width: 32px;
  height: auto;
  border-radius: 0;
}

#pres-img {
  max-width: 600px;
  min-width: 250px;
}




/* Adobe-specific responsive enhancements */
@media (max-width: 768px) {
  #features-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  #about-desc {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  #adobe-icon {
    width: 15%;
  }
  #research-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #sketch-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  #personas-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .persona-card {
    padding: 24px;
  }
  
  .persona-content {
    gap: 20px;
  }
}


/* ========================================
   PASSWORD PROTECTION STYLES
   ======================================== */

/* Password form container */
#password-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 20px;
}

/* Password form */
#password-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
  max-width: 500px;
  min-width: 250px;
  width: 100%;
}

#password-form h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #1e1e1e;
}

#password-form p {
  color: #666;
  margin-bottom: 24px;
  font-size: 16px;
}

/* Password input */
#password-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Instrument-sans-reg", sans-serif;
  margin-bottom: 16px;
  box-sizing: border-box;
}

#password-input:focus {
  outline: none;
  border-color: #4a90e2;
}

/* Password submit button */
#password-submit {
  width: 100%;
  padding: 12px 24px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Instrument-sans-reg", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#password-submit:hover {
  background-color: #357abd;
}

/* Error message */
#error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}

/* Protected content */
#protected-content {
  display: none;
}

#protected-content.authenticated {
  display: block;
}

/* Password form header icon */
#password-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

#problem-frame {
  border-radius: 18px;
  border: 2px solid #ED457E;
  background: #ffffff;
  /* background: #F7F6F3; */
  padding: 12px 48px;
  /* background: linear-gradient(98deg, #7E3CF9 -4.21%, #E243E7 35.46%, #ED457E 59.11%, #4618FF 103.91%); */
}
#opportunity-frame {
  border-radius: 18px;
  border: 2px solid #7E3CF9;
  background: #ffffff;
  /* background: #F7F6F3; */
  padding: 12px 48px;
  /* background: linear-gradient(98deg, #7E3CF9 -4.21%, #E243E7 35.46%, #ED457E 59.11%, #4618FF 103.91%); */
}

.adobe-video{
  width: 100%;
  height: auto;
  border-radius: 12px;
}

#key-point-sec {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 36px 48px;
}
#asterisk {
  width: 48px;
}
#asterisk-small{
  width: 28px;
}
#reasoning {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #e31a85;
}
#chosen-design-sec{
  border: 2px solid #ec3788;
}
#chosen-design {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#key-point {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}
#research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.research-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0f0f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.research-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}
.research-item h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #4a4a4a;
}
.research-item p {
  margin-bottom: 0;
  color: #666;
  font-size: 14px;
}
#internal-research-grid,
#interview-research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.blurred-research-item {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0f0f0;
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.insight-item {
  padding: 0 12px;
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #4a90e2;
  font-size: 16px;
  line-height: 1.6;
  color: #404040;
}

.insight-item strong {
  color: #c7135b;
  font-size: 24px;
  font-weight: 600;
}
#sketch-section {
  display: flex;
  max-width: 100%;
}
.brainstorm-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto;
}
/* Sketch ideas grid */
#sketch-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 48px;
}
.sketch-idea {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sketch-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin-bottom: 16px;
}

.sketch-idea h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #4a4a4a;
}

.sketch-idea p {
  margin-bottom: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
/* Personas section */
#personas-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 32px;
}

.persona-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.persona-card h4 {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 600;
  color: #4a4a4a;
}

.persona-role {
  margin-top: 0;
  margin-bottom: 24px;
  color: #666;
  font-size: 16px;
  font-style: italic;
}
.persona-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.persona-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.persona-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.persona-label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Home placement prototypes */
#home-placement {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 48px;
}

/* Persona prototypes */
#persona-prototypes {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 48px;
}

#prototyping-section {
  scroll-margin-top: 64px;
}

/* Prototype item styling */
.prototype-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 48px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prototype-item h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #4a4a4a;
}

.prototype-item > p {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.prototype-item .adobe-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-top: 0;
}


/* ========================================
   LEARNING OPTIONS SECTION
   ======================================== */

#learning-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.learning-option h4 {
  color: #4a90e2;
}
.tutorial-option h4 {
  color: #7E3CF9;
}

.prototype-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prototype-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.tutorial-label {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 600;
  color: #4a4a4a;
  font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #learning-options {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .tutorial-detail {
    padding: 16px;
  }
}

/* ========================================
   KEY DESIGN SCREENS SECTION
   ======================================== */

#key-screens-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.design-screen-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.design-screen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.design-screen-card.reverse {
  direction: rtl;
}

.design-screen-card.reverse > * {
  direction: ltr;
}

.screen-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.key-screen {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.key-screen:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.screen-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a90e2;
  text-align: center;
}

.design-rationale {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.design-rationale h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #4a4a4a;
}

.design-decision,
.design-benefit {
  margin: 0;
  line-height: 1.6;
  color: #4a4a4a;
}

.design-decision {
  font-size: 15px;
}

.design-benefit {
  font-size: 14px;
  color: #666;
  padding-left: 16px;
  border-left: 3px solid #4a90e2;
}

.design-decision strong,
.design-benefit strong {
  color: #4a90e2;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #key-screens-section {
    gap: 32px;
  }
  
  .design-screen-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  
  .design-screen-card.reverse {
    direction: ltr;
  }
  
  .design-rationale h4 {
    font-size: 20px;
  }
  
  .design-decision,
  .design-benefit {
    font-size: 14px;
  }
}
/* ========================================
   FLOATING JUMP TO PROTOTYPE BUTTON
   ======================================== */

.floating-jump-button {
  position: fixed;
  bottom: 25px;
  right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #4a90e2;
  color: white;
  text-decoration: none;
  border-radius: 48px;
  font-weight: 500;
  font-size: 16px;
  font-family: "Instrument-sans-reg";
  box-shadow: 0 4px 10px rgba(74, 145, 226, 0.305);
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.floating-jump-button.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.floating-jump-button:hover {
  background: #357abd;
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(74, 144, 226, 0.5);
}

.floating-jump-button.visible:hover {
  transform: translateY(-4px);
}

.floating-jump-button svg {
  transition: transform 0.3s ease;
}

.floating-jump-button:hover svg {
  transform: translateY(2px);
}

/* Hide when scrolled past prototype section */
.floating-jump-button.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .floating-jump-button {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }
  
  .floating-jump-button span {
    display: none;
  }
  
  .floating-jump-button {
    padding: 16px;
    border-radius: 50%;
  }
}