/* ==========================================================================
   CSS STYLESHEET: VISION BOARD
   Theme: Purple, Sky Blue, and Emerald Green
   ========================================================================== */

/* 1. Color Palette Variables */
:root {
  /* Colors */
  --bg-deep: #0f172a;           /* Dark slate blue background */
  --card-bg: #1e1b4b;           /* Deep indigo/purple card containers */
  --card-inner-bg: #0f172a;     /* Inset background for items */
  
  --purple-primary: #8b5cf6;    /* Vibrant Purple */
  --blue-accent: #38bdf8;       /* Bright Sky Blue */
  --green-accent: #10b981;      /* Emerald Green */
  
  /* Text & Legibility */
  --text-bright: #ffffff;       /* Pure white for headers & key labels */
  --text-main: #f8fafc;         /* Off-white for primary text */
  --text-muted: #cbd5e1;        /* Light slate for secondary text */
  
  /* Layout Spacing */
  --border-radius: 12px;
  --transition-fast: all 0.25s ease-in-out;
}

/* 2. Global Resets & Body Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  padding: 32px 16px;
}

/* 3. Main Layout Container */
.vision-board-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 4. Typography & Headers */
.main-header h1 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--purple-primary), var(--blue-accent), var(--green-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 8px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-accent);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(56, 189, 248, 0.25);
}

.assets-header {
  color: var(--green-accent);
  border-bottom-color: rgba(16, 185, 129, 0.25);
}

.barriers-header {
  color: var(--purple-primary);
  border-bottom-color: rgba(139, 92, 246, 0.25);
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  background: rgba(15, 23, 42, 0.6);
  padding: 18px;
  border-radius: 8px;
  border-left: 4px solid var(--purple-primary);
  margin-bottom: 24px;
}

/* 5. Card Containers & Sections */
.full-width-section,
.column {
  background: var(--card-bg);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

/* 6. Core Aspirations Grid Layout */
.aspirations-flex-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.aspiration-card {
  position: relative;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--green-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: var(--transition-fast);
}

.aspiration-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-accent);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.25);
}

.aspiration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Semi-transparent text banner overlay for maximum text readability */
.aspiration-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-bright);
  text-align: center;
  padding: 8px 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* 7. Two Column Layout: Assets & Barriers */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-inner-bg);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.list-item:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: var(--purple-primary);
  transform: translateX(4px);
}

.list-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--blue-accent);
  flex-shrink: 0;
}

.list-item p {
  color: var(--text-bright);
  font-weight: 600;
  font-size: 1.05rem;
}

/* 8. Purpose Section Blockquote */
.purpose-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.purpose-content img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--purple-primary);
  flex-shrink: 0;
}

blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  border-left: 4px solid var(--green-accent);
  padding-left: 18px;
}

/* 9. Responsive Adjustments for Mobile Screens */
@media (max-width: 768px) {
  .two-column-layout {
    grid-template-columns: 1fr;
  }

  .purpose-content {
    flex-direction: column;
    text-align: center;
  }

  .purpose-content img {
    width: 100%;
    height: 180px;
  }

  blockquote {
    border-left: none;
    border-top: 3px solid var(--green-accent);
    padding-left: 0;
    padding-top: 16px;
  }
}
body {
  font-family: "Inter", sans-serif; 
  margin:0; 
  background:#f7f8fc; 
  color:#1f2937;
}
.story {
  max-width:680px; 
  margin:80px auto; 
  padding:0 24px;
}
.story h1 {
  font-size:2.75rem; 
  line-height:1.15; 
  margin-bottom:12px;
}
.story .lead {
  font-size:1.25rem; 
  color:#4b5563; 
  margin-bottom:24px;
}
.story p {
  line-height:1.8;
}
body {
  margin:0; 
  padding:48px; 
  font-family:"Georgia", serif; 
  background:#fdfcf8;
}
h1 {
  font-size:3rem; 
  margin-bottom:12px;
}
p {
  font-size:1.125rem; 
  line-height:1.7;
}
mark {
  background:#fff176; 
  padding:0 4px;
}
.features {
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid; 
  gap: 12px;
}
.features li {
  padding:16px 20px; 
  background:#fff; 
  border-radius:12px; 
  box-shadow:0 10px 25px rgba(15, 23, 42, 0.08);
}
.features li::before {
  content:"✔"; 
  color:#04AA6D; 
  margin-right:12px;
}
.pricing {
  width:100%; 
  border-collapse:collapse; 
  background:#fff; 
  border-radius:12px; 
  overflow:hidden;
}
.pricing th, .pricing td {
  padding:16px 20px; 
  text-align:left;
}
.pricing thead {
  background:#04AA6D; 
  color:#fff;
}
.pricing tbody tr:nth-child(even) {
  background:#f9fafb;
}
.table-wrapper {
  overflow-x:auto;
}
body {
  font-family: "Segoe UI", sans-serif; 
  padding:48px; 
  background:#eef2ff;
}
ul {
  list-style: square;
}
table {
  margin-top:32px; 
  border-collapse:collapse; 
  width:100%; 
  max-width:640px; 
  background:#fff;
}
th, td {
  border:1px solid #d9e2ec; 
  padding:12px 16px; 
  text-align:left;
}
th {
  background:#6366f1; 
  color:#fff;
}
.site-nav ul {
  display:flex; 
  gap:16px; 
  list-style:none; 
  padding:0; 
  margin:0;
}
.site-nav a {
  display:block; 
  padding:12px 20px; 
  border-radius:999px; 
  text-decoration:none; 
  color:#0f172a; 
  font-weight:600;
}
.site-nav a:hover, .site-nav a.active {
  background:#04AA6D; 
  color:#fff;
}
.site-nav ul {
  display:flex; 
  gap:16px; 
  list-style:none; 
  padding:0; 
  margin:0;
}
.site-nav a {
  display:block; 
  padding:12px 20px; 
  border-radius:999px; 
  text-decoration:none; 
  color:#0f172a; 
  font-weight:600;
}
.site-nav a:hover, .site-nav a.active {
  background:#04AA6D; 
  color:#fff;
}
.skip-link {
  position:absolute; 
  left:-9999px; 
  top:auto; 
  width:1px; 
  height:1px; 
  overflow:hidden;
}
.skip-link:focus {
  position:static; 
  width:auto; 
  height:auto; 
  padding:12px 20px; 
  background:#000; 
  color:#fff;
}
body {
  font-family:"Source Sans Pro",sans-serif; 
  margin:0; 
  background:#f1f5f9;
}
nav {
  background:#0f172a; 
  padding:12px 24px;
}
nav ul {
  display:flex; 
  gap:12px; 
  list-style:none; 
  margin:0; 
  padding:0;
}
nav a {
  color:#cbd5f5; 
  text-decoration:none; 
  padding:10px 18px; 
  border-radius:8px;
}
nav a:hover, nav a:focus {
  background:#1d4ed8; 
  color:#fff;
}
main {
  max-width:720px; 
  margin:48px auto; 
  padding:0 24px;
}
img.responsive {
  max-width:100%; 
  height:auto; 
  border-radius:16px;
}
.hero {
  background:url("images/gradient.jpg") center/cover no-repeat;
  padding:120px 24px;
  color:#fff;
}
.video-wrapper {
  position:relative; 
  padding-bottom:56.25%; 
  height:0; 
  overflow:hidden;
}
.video-wrapper iframe {
  position:absolute; 
  top:0; 
  left:0; 
  width:100%; 
  height:100%; 
  border:0;
}
body {
  font-family: "Segoe UI", sans-serif; 
  margin:0; 
  background:#f9fafb;
}
main {
  max-width:900px; 
  margin:0 auto; 
  padding:40px 24px;
}
figure {
  margin:0; 
  background:#fff; 
  border-radius:12px; 
  padding:24px; 
  box-shadow:0 8px 20px rgba(15,23,42,0.08);
} 
figure img {
  max-width:100%; 
  border-radius:8px;
}
figcaption {
  margin-top:12px; 
  color:#475569;
}
.signup {
  max-width:420px; 
  margin:0 auto; 
  display:grid; 
  gap:16px; 
  background:#fff; 
  padding:32px; 
  border-radius:16px; 
  box-shadow:0 15px 35px rgba(15,23,42,0.12);
} 
.signup label {
  font-weight:600;
}
.signup input {
  padding:12px 14px; 
  border:1px solid #d9e2ec; 
  border-radius:10px; 
  font-size:1rem;
}
.signup input:focus {
  border-color:#2563eb; 
  outline:none; 
  box-shadow:0 0 0 3px rgba(37,99,235,0.2);
} 
.signup button {
  background:#04AA6D; 
  color:#fff; 
  border:none; 
  padding:12px 18px; 
  border-radius:999px; 
  font-weight:600; 
  cursor:pointer;
}
.signup button:hover {
  background:#028a56;
}
input:invalid {
  border-color:#dc2626;
}
input:valid {
  border-color:#16a34a;
}
body {
  font-family:"Poppins",sans-serif;
  background:#f4f6fb;
  margin:0;
}
main {
  max-width:520px; 
  margin:60px auto; 
  padding:0 24px;
}
form {
  background:#fff; 
  padding:32px; 
  border-radius:16px; 
  box-shadow:0 18px 40px rgba(15,23,42,0.12); 
  display:grid; 
  gap:18px;
}
label {
  font-weight:600; 
  color:#1f2937;
}
input, textarea {
  border:1px solid #d0d8e4; 
  border-radius:12px; 
  padding:12px 14px; 
  font-size:1rem;
}
input:focus, textarea:focus {
  border-color:#6366f1; 
  outline:none; 
  box-shadow:0 0 0 3px rgba(99,102,241,0.25);
} 
button {
  background:#6366f1; 
  color:#fff; 
  border:none; 
  padding:12px 20px; 
  border-radius:999px; 
  font-weight:600; 
  cursor:pointer;
}
button:hover {
  background:#4f46e5;
}
.btn {
  display:inline-block; 
  padding:12px 20px; 
  border-radius:999px; 
  font-weight:600; 
  text-decoration:none; 
  transition:0.2s ease;
}
.btn-primary {
  background:#04AA6D; 
  color:#fff;
}
.btn-primary:hover {
  background:#028a56;
}
.btn-ghost {
  border:2px solid #04AA6D; 
  color:#04AA6D;
}
.btn-ghost:hover {
  background:#04AA6D; 
  color:#fff;
}
.card {
  overflow:hidden; 
  background:#fff; 
  border-radius:18px; 
  box-shadow:0 20px 40px rgba(15,23,42,0.12); 
  display:grid; 
  gap:0;
}
.card img {
  width:100%; 
  height:auto;
}
.card-body {
  padding:24px 28px;
}
.card-body h3 {
  margin-top:0; 
  margin-bottom:12px;
}
.alert {
  border-radius:12px; 
  padding:16px 20px; 
  margin-bottom:16px;
}
.alert-success {
  background:#ecfdf5; 
  color:#166534; 
  border:1px solid #86efac;
}
body {
  font-family:"Inter",sans-serif; 
  background:#f4f6fb; 
  margin:0; 
  padding:48px; 
  display:grid; 
  gap:24px;
}
.btn {
  display:inline-block; 
  padding:10px 18px; 
  border-radius:999px; 
  text-decoration:none; 
  font-weight:600; 
  transition:0.2s ease;
}
.btn-primary {
  background:#6366f1; 
  color:#fff;
}
.btn-primary:hover {
  background:#4f46e5;
}
.alert {
  border-radius:12px; 
  padding:14px 18px;
}
.alert-info {
  background:#eff6ff; 
  color:#1d4ed8;
}
.card {
  background:#fff; 
  border-radius:16px; 
  padding:24px; 
  box-shadow:0 20px 45px rgba(15,23,42,0.12);
} 
.card h2 {
  margin-top:0;
}