/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #000;
  min-height: 100vh;
  padding: 40px 60px; /* Generous spacing on the sides, matching the original layout style */
  display: block; /* Remove the flex centering that was squishing it into a card */
}

/* Main Hero Wrapper - Transformed from a card to a full-bleed structure */
.hero-container {
  width: 100%;
  max-width: 1200px; /* Slightly increased to let elements breathe across the screen */
  margin: 0 auto;    /* Centers the layout column cleanly on ultra-wide monitors */
  background-color: transparent; /* Remove the inner card background */
  border-radius: 0;             /* Remove the corner rounding of the frame */
  padding: 0;                   /* Stripped internal padding since body handles it now */
  box-shadow: none;             /* Remove the card shadow dropping behind it */
}

/* Navbar Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.logo span {
  color: #A89BF2;
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover, 
.nav-links a.active {
  color: #A89BF2;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #A89BF2;
}

/* Hero Content layout */
.hero-text-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  gap: 20px;
}

.title-area h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.1;
}

.title-area .subtitle {
  font-size: 13px;
  color: #909090;
  margin-top: 6px;
  font-weight: 400;
}

.cta-btn {
  background-color: #fff;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  background-color: #2a2a2a;
}

/* Image Card Showcase Container */
.image-card {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #222; 
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image Inside Glassmorphic Badge */
.image-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 20px 25px;
  color: #ffffff;
  max-width: 640px;
}

.badge-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.dot-indicator {
  width: 5px;
  height: 5px;
  background-color: #111;
  border-radius: 50%;
}

.badge-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.image-overlay-badge h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.image-overlay-badge p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  max-width: 85%;
}

.arrow-icon {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 32px;
  height: 32px;
  background-color: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Bottom Metrics Elements grid */
.metrics-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.6fr;
  gap: 15px;
}

.metric-card {
  border-radius: 20px;
  padding: 22px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 105px;
}

.light-card {
  background-color: #e8e8e8; 
  color: #fff;
}

.dark-card {
  background-color: #fff;
  color: #ffffff;
}

.metric-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.metric-card h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.metric-card p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #8c8c8c;
}

.dark-card p {
  color: #707070;
}

.mini-arrow {
  width: 24px;
  height: 24px;
  background-color: #fff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pill-label {
  font-size: 9px;
  font-weight: 700;
  border: 1px solid #b5b5b5;
  padding: 3px 8px;
  border-radius: 10px;
  color: #606060;
}

/* ==========================================
   MEDIA QUERIES FOR RESPONSIVE DESIGN
   ========================================== */

/* Tablet & Smaller Desktops (Under 992px) */
@media (max-width: 992px) {
  .hero-container {
    padding: 30px;
  }
  
  .title-area h1 {
    font-size: 34px;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr 1fr; /* Switch to a balanced two-column grid */
  }
  
  .dark-card {
    grid-column: span 2; /* Let the portfolio asset metric span full width */
  }
}

/* Mobile Screens (Under 640px) */
@media (max-width: 640px) {
  body {
    padding: 24px 16px; /* Prevents text from jamming right up against mobile screen edges */
  }
  
  .hero-container {
    padding: 0;
  }

  /* Stack nav links or allow safe overflow scrolling */
  .navbar {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .nav-links {
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  /* Stack main heading row vertically */
  .hero-text-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .title-area h1 {
    font-size: 28px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  /* Adjust showcase block aspect ratio safely */
  .image-card {
    height: 380px; 
  }

  /* Tighten glass badge padding and scale layout typography */
  .image-overlay-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .image-overlay-badge p {
    max-width: 100%;
    padding-right: 40px; /* Leave space clear for the button link position */
  }

  /* Complete collapse of indicators to vertical list */
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dark-card {
    grid-column: span 1;
  }
}


/* ==========================================
   EVENT SCHEDULE SECTION STYLES
   ========================================== */

.schedule-section {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Tab Filter Bar Layout */
.category-tabs {
  display: flex;
  background-color: #111;
  padding: 8px 12px;
  border-radius: 100px;
  align-self: flex-start;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #4a4a4a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background-color: #101010;
  color: #ffffff;
}

.tab-btn:hover:not(.active) {
  background-color: #f7f7f7;
}
.tab-btn:hover {
    color: #fff;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual Flex Event Card Rows */
.event-card {
  display: flex;
  background-color: #111;
  border-radius: 24px;
  padding: 20px;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease;
}

.event-card:hover {
  transform: translateY(-2px);
}
.event-image-wrapper {
  width: 220px;
  height: 140px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #eaeaea;
}

.event-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-row {
  display: flex;
  gap: 16px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f4f6f9;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #718096;
}

.meta-item svg {
  color: #3182ce;
}

.event-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  max-width: 90%;
}

.location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #718096;
  font-weight: 500;
}

.location-row svg {
  color: #3182ce;
}

/* Right-aligned Actions & Badge Stacking */
.event-action-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding-left: 20px;
  border-left: 1px solid #edf2f7;
  min-width: 160px;
}

.ticket-btn {
  background-color: transparent;
  border: 1px solid #cbd5e0;
  color: #4a5568;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  max-width: 120px;
  text-align: center;
  transition: all 0.2s ease;
}

.ticket-btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #ffffff;
}

/* Premium Speaker Circle Stacking Layout */
.avatar-stack {
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* Allows cleaner stacking overlapping rules natively */
}

.avatar-item {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  position: relative;
}

.placeholder-avatar {
  background-color: #cbd5e0; /* Color for speaker thumbnail placeholder slots */
}

.label-avatar {
  background-color: #3182ce;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  width: auto;
  border-radius: 100px;
  margin-left: 0;
  margin-right: -4px;
  height: 24px;
  border: none;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .category-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 12px;
  }
  
  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .event-image-wrapper {
    width: 100%;
    height: 180px;
  }
  
  .event-action-block {
    width: 100%;
    border-left: none;
    border-top: 1px solid #edf2f7;
    padding-left: 0;
    padding-top: 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .ticket-btn {
    margin-left: 0;
  }
}

/* Isolated FAQ Layout styled dynamically for Dark Mode backgrounds */

.ac-faq-section {
  background-color: #000000 !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: 6rem 1.5rem;
  box-sizing: border-box;
}

/* Structural Reset Shielding */
.ac-faq-section *, 
.ac-faq-section *::before, 
.ac-faq-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ac-faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.ac-faq-main-title {
  color: #ffffff;
  font-family: "Moirai One", system-ui;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  text-align: left;
}

.ac-faq-wrapper {
  display: flex;
  flex-direction: column;
}

/* Individual Accordion Rows */
.ac-faq-item {
  border-bottom: 1px solid #1c1c1e; /* Minimal subtle line dividers */
}

/* Clickable Trigger Row Styling */
.ac-faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.85rem 0;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.ac-faq-question {
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  padding-right: 1.5rem;
  transition: color 0.2s ease;
}

/* Interactive highlight on row hover */
.ac-faq-trigger:hover .ac-faq-question {
  color: #a855f7; /* Gives a smooth hint of purple on hover */
}

/* Dynamic Minimal Cross/Plus Icon made purely with CSS */
.ac-faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Vertical and Horizontal lines forming the "+" shape */
.ac-faq-icon::before,
.ac-faq-icon::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Horizontal line */
.ac-faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.ac-faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

/* Active State Transformation: Flips "+" into a clean "-" icon when row is expanded */
.ac-faq-item.ac-faq-active .ac-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.ac-faq-item.ac-faq-active .ac-faq-icon::before {
  transform: rotate(180deg);
  background-color: #a855f7; /* Changes minus icon to accent purple when open */
}

/* Hidden Collapsible Panel Content Panel */
.ac-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.ac-faq-answer {
  color: #8e8e93;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  padding-bottom: 2rem;
  max-width: 800px;
}

/* Expands the panel height automatically via script trigger targeting */
.ac-faq-item.ac-faq-active .ac-faq-content {
  max-height: 200px; /* Comfortably holds a paragraph block safely */
}
/* Isolated Footer Styles using specific unique prefixes */

.ac-ft-section {
  background-color: #000000 !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: 4rem 1.5rem 2rem 1.5rem;
  box-sizing: border-box;
}

/* Guard rails to isolate layout elements */
.ac-ft-section *, 
.ac-ft-section *::before, 
.ac-ft-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Links Container Grid layout (Mobile-first, single column stack) */
.ac-ft-links-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

/* Column Headings */
.ac-ft-heading {
  color: #666666;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

/* Link List Styling */
.ac-ft-list {
  list-style: none;
}

.ac-ft-list li {
  margin-bottom: 0.85rem;
}

.ac-ft-link {
  color: #8c8c8c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.ac-ft-link:hover {
  color: #ffffff;
}

/* Bottom Bar Branding Elements Layout */
.ac-ft-bottom-bar {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #111111;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

/* Brand Name with Placeholder Minimalist Logo Block */
.ac-ft-brand {
  color: #8c8c8c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ac-ft-logo-img {
  /* Adjust height to align cleanly with your text line-height */
  height: 16px; 
  width: auto;
  display: block;
  object-fit: contain;
}
/* Y-Combinator Badge Elements */
.ac-ft-badge {
  color: whitesmoke;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;font-family: "Moirai One", system-ui;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ac-ft-yc-icon {
  background-color: #f26522;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

/* ==========================================================================
   MEDIA QUERIES (Handling Tablet and Desktop Screens)
   ========================================================================== */

/* Tablets & Small Screens (From 576px up) */
@media (min-width: 576px) {
  .ac-ft-links-container {
    /* Splits columns dynamically out into a multi-column row */
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
  
  .ac-ft-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Larger Desktop Screens (From 992px up) */
@media (min-width: 992px) {
  .ac-ft-links-container {
    /* Shifts the columns to stay cleanly on the left side of a wide view */
    grid-template-columns: repeat(4, 160px);
  }
}

.prompt-hero{ color:#fff; padding:0 0 60px; text-align:center; overflow:hidden; position:relative;}
  .prompt-hero .navbar{padding:22px 40px;}
  .prompt-hero .navbar .logo{color: #FFF;}
  .prompt-hero .navbar .logo span{color: #555;}
  .prompt-hero .navbar .nav-links a{color: #fff;}
  .prompt-hero .navbar .nav-links a:hover,
  .prompt-hero .navbar .nav-links a.active{color:#fff;}
  .prompt-hero .navbar .nav-links a.active::after{background-color:#fff;}
  

  .prompt-hero-content{padding:40px 24px 0;}
  
  .prompt-hero h1{font-size:clamp(34px,5.5vw,58px); font-weight:800; letter-spacing:-1px; max-width:18ch; margin:0 auto 16px; line-height:1.08;}
  .prompt-hero .prompt-subtitle{color: #fff; font-size:14px; max-width:46ch; margin:0 auto 28px; line-height:1.6;}
  .prompt-cta{
    display:inline-flex; align-items:center; gap:8px; background:#fff; color:#0d0d0d;
    padding:12px 26px; border-radius:100px; font-size:13px; font-weight:700;
    text-decoration:none; margin-bottom:56px; transition:background 0.2s ease;
  }
  .prompt-cta:hover{background:#e5e5e5;}

  .caption-row{
    display:flex; justify-content:center; gap:60px; flex-wrap:wrap;
    padding-top:24px; border-top:1px solid rgba(255,255,255,0.08);
    max-width:900px; margin:0 auto; padding-left:24px; padding-right:24px;
  }
  .caption-item{max-width:200px;}
  .caption-item h4{font-size:12px; font-weight:700; margin-bottom:6px;}
  .caption-item p{font-size:11px; color:rgba(255,255,255,0.45); line-height:1.6; margin:0;}

  @media(max-width:640px){
    .caption-row{gap:28px;}
  }

  .glow-wrap{position:relative; overflow:hidden;}
  .glow-orb{
    position:absolute; border-radius:50%; filter:blur(60px); pointer-events:none; z-index:0;
    animation:float 10s ease-in-out infinite;
  }
  .glow-orb.one{width:340px; height:340px; background:radial-gradient(circle,#47034E,transparent 70%); top:-80px; left:-60px; opacity:0.35;}
  .glow-orb.two{width:260px; height:260px; background:radial-gradient(circle,#d62828,transparent 70%); top:120px; right:-60px; opacity:0.2; animation-delay:2s;}
  @keyframes float{
    0%,100%{transform:translate(0,0) scale(1);}
    50%{transform:translate(20px,-24px) scale(1.06);}
  }
  .hero-container, .hero-content, .navbar{position:relative; z-index:2;}

  .main-cta-row{display:flex; align-items:center; gap:16px; margin-top:22px; flex-wrap:wrap;}
  .cta-secondary{
    display:inline-flex; align-items:center; gap:8px;
    background:transparent; color:#1a1a1a; border:1.5px solid #1a1a1a;
    padding:11px 22px; border-radius:12px; font-size:12px; font-weight:600;
    text-decoration:none; transition:all 0.2s ease;
  }
  .cta-secondary:hover{background:#1a1a1a; color:#fff;}

  .reveal{opacity:0; transform:translateY(28px); transition:opacity 0.8s ease, transform 0.8s ease;}
  .reveal.in-view{opacity:1; transform:translateY(0);}

  .intro-section{max-width:1200px; margin:100px auto; padding:0 24px; text-align:center;}
  .intro-eyebrow{font-size:11px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#fff; margin-bottom:16px;}
  .intro-section h2{font-family:'Fraunces',serif; font-size:clamp(28px,4.5vw,46px); font-weight:500; letter-spacing:-0.5px;color: #fff; max-width:16ch; margin:0 auto 20px; line-height:1.15;}
  .intro-section p{font-size:15px; color:#6a6a6a; max-width:56ch; margin:0 auto; line-height:1.75;}

  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* Creates the subtle dark border line between cards */
    background-color: #A89BF2; /* Border line color */
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
  }

  /* Individual Card Styling */
  .how-card {
    background-color: #0a0a0a; /* Dark card surface */
    display: flex;
    flex-direction: column;
    justify-content: b;
    height: 100%;
  }

  /* Image Section */
  .card-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten; /* Optional: Helps blend monochrome/tinted space graphics */
  }

  /* Text & Content Container */
  .card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .how-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: sans-serif; /* Adjusted to fit the tech aesthetic */
  }

  .how-card p {
    color: #8a8a8a; /* Clean, muted grey text */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* Mid-card CTA Button styling */
  .btn-get-started {
    display: inline-block;
    align-self: flex-start;
    background-color: #111;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto; /* Pushes button to bottom of text block */
    transition: opacity 0.2s ease;
  }

  .btn-get-started:hover {
    opacity: 0.9;
  }

  /* Responsive Design for Tablets/Mobile */
  @media (max-width: 900px) {
    .how-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      background-color: transparent;
      border: none;
    }
    
    .how-card {
      border: 1px solid #1a1a1a;
      border-radius: 12px;
    }
  }

  .features-section{

    background:#000;

    padding:120px 1px;

}

.features-head{

    max-width:1200px;

    margin:auto;

    margin-bottom:80px;

}

.intro-eyebrow{

    color:#A89BF2;

    font-size:13px;

    letter-spacing:3px;

    font-weight:600;

}

.features-head h2{

    color:#fff;
    font-size:55px;
    font-weight:700;
    margin-top:15px;
    font-family: "Moirai One", system-ui

}

.feature-stack{
    width:100%;
    position:relative;
}

/* CARD */

.feature-card{
    position:sticky;

    top:80px;

    display:grid;

    grid-template-columns:58% 42%;

    max-width:1150px;

    height:520px;

    margin:0 auto 80px;

    border-radius:30px;

    overflow:hidden;

    background:#090909;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 70px rgba(0,0,0,.45);

}

/* IMAGE */

.feature-image{

    width:100%;

    height:100%;

    overflow:hidden;

}

.feature-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/* CONTENT */

.feature-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:60px;

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#47034E;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

}

.feature-content h3{

    color:#fff;

    font-size:42px;

    line-height:1.1;

    margin-bottom:20px;

}

.feature-content p{

    color:#999;

    font-size:18px;

    line-height:1.8;

}

/* STACKING */

.feature-card:nth-child(1){

    z-index:1;

}

.feature-card:nth-child(2){

    z-index:2;

}

.feature-card:nth-child(3){

    z-index:3;

}

.feature-card:nth-child(4){

    z-index:4;

}

.feature-card:nth-child(5){

    z-index:5;

}

.feature-card:nth-child(6){

    z-index:6;

}

/* HOVER */

.feature-card:hover{

    transform:translateY(-4px);

    transition:.35s;

}
@media(max-width:900px){

.feature-card{

    grid-template-columns:1fr;

    height:auto;

    top:10px;

}

.feature-image{

    height:200px;

}

.feature-content{

    padding:10px;

}

.features-head h2{

    font-size:38px;

}

.feature-content h3{

    font-size:30px;

}

.feature-content p{

    font-size:16px;

}

}

@media (max-width: 768px) {
.prompt-hero .navbar .nav-links a{color: #fff; margin: -2px;}

} 
/* Base Section Setup - Forced Full-Screen Breakout */
.ac-hero-section {
  background-color: #000000 !important;
  min-height: 70vh;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem;
  box-sizing: border-box;
}

/* Guard rails to isolate layout elements */
.ac-hero-section *, 
.ac-hero-section *::before, 
.ac-hero-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Inner Container holding content */
.ac-hero-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  z-index: 2; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Typography Base (Mobile-First) */
.ac-hero-title {
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.2rem; /* Size for small mobile screens */
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Buttons and Info layout wrapper */
.ac-cta-group {
  display: flex;
  flex-direction: column; /* Stack vertically on small mobile */
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.ac-setup-time {
  color: #666666;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ac-sparkle-icon {
  width: 14px;
  height: 14px;
  fill: #666666;
}

.ac-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: #000000;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  width: 100%; /* Full width on tiny mobile screens */
  max-width: 280px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ac-cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.ac-cta-button .ac-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.ac-cta-button:hover .ac-arrow {
  transform: translateX(3px);
}

/* Background Watermark Base (Mobile-First) */
.ac-bg-watermark {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Moirai One", system-ui;
  font-size: 4.5rem; /* Compact size for phone backgrounds */
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12); 
  user-select: none;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* Fading Purple Glow at bottom */
.ac-hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30vh; 
  background: linear-gradient(
    to top, 
    rgba(147, 51, 234, 0.25) 0%, 
    rgba(147, 51, 234, 0.08) 45%, 
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1; 
  pointer-events: none;
}

@media (min-width: 576px) {
  .ac-hero-container {
    gap: 2.5rem;
  }
  
  .ac-hero-title {
    font-size: 3.2rem;
  }
  
  .ac-cta-group {
    flex-direction: row; /* Switch back to inline line layout */
    gap: 1.5rem;
  }
  
  .ac-cta-button {
    width: auto; /* Stop stretching button */
  }
  
  .ac-bg-watermark {
    font-size: 9rem;
    bottom: -1%;
  }
}

/* Large Displays / Desktop (From 992px up) */
@media (min-width: 992px) {
  .ac-hero-title {
    font-size: 4.5rem;
  }
  
  .ac-bg-watermark {
    font-size: 15rem;
    bottom: -2%;
  }
}

/* Full Section Breakout Framework Configuration */
.pr-hero-viewport {
  background-color: #000000 !important; /* Absolute dark mode layout */
  min-height: 100vh;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Local Component Style Reset Safeguard */
.pr-hero-viewport *, 
.pr-hero-viewport *::before, 
.pr-hero-viewport *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.pr-z-blur-overlay {
  display: none;
}

@media (min-width: 768px) {
  .pr-z-blur-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(
      20% 0%, 100% 0%, 
      100% 18%, 25% 82%, 
      100% 82%, 100% 100%, 
      0% 100%, 0% 82%, 
      75% 18%, 0% 18%, 
      0% 0%
    );
    background: linear-gradient(
      135deg, 
      rgba(147, 51, 234, 0.15) 0%, 
      rgba(147, 51, 234, 0.03) 50%, 
      rgba(147, 51, 234, 0.18) 100%
    );
    
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 1;
    pointer-events: none;
  }
}
.pr-main-nav {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 100;
}

.pr-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pr-main-logo-img {
  height: 48px; 
  width: auto;
  display: block;
  object-fit: contain;
}
.pr-links-tray {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease;
}

.pr-links-tray.pr-tray-expanded {
  max-height: 320px;
  padding: 1.5rem;
}

.pr-item-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pr-link-node {
  color: #8c8c8e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pr-link-node:hover {
  color: #ffffff;
}

.pr-nav-cta-btn {
  background:rgba(147, 51, 234, 0.25);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  width: 100%;
  transition: background-color 0.2s ease;
}

.pr-nav-cta-btn:hover {
  background:rgba(147, 51, 234, 0.25);
}
.pr-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.pr-menu-stripe {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pr-hamburger-active .pr-menu-stripe:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.pr-hamburger-active .pr-menu-stripe:nth-child(2) {
  opacity: 0;
}

.pr-hamburger-active .pr-menu-stripe:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==========================================================================
   HERO TYPOGRAPHY AND LAYOUT CONTENT CONTAINER
   ========================================================================== */
.pr-hero-body {
  max-width: 950px;
  width: 100%;
  padding: 4.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  position: relative;
  z-index: 10;
}

.pr-main-headline {
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2.1rem, 5.5vw, 4.3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}


/* Base container adjustments - merging rotation with base layout state */
.pr-text-highlighter {
  background: rgba(147, 51, 234, 0.25);
  color: #ffffff !important;
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  opacity: 1;
  transform: rotate(-20deg) translateX(0); 
}
.pr-slide-from-left {
  opacity: 0;
  transform: rotate(-2deg) translateX(-30px) !important;
}
.pr-slide-from-right {
  opacity: 0;
  transform: rotate(-2deg) translateX(30px) !important;
}
.pr-main-subtext {
  color: #8c8c8e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  font-weight: 400;
  max-width: 660px;
  margin-bottom: 3.25rem;
}

/* Large Blue Button Call To Action Element Setup */
.pr-body-cta-anchor {
  display: inline-flex;
  align-items: center;
  background:rgba(147, 51, 234, 0.25);
  color: #ffffff;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 0.8rem 0.8rem 0.8rem 1.75rem;
  border-radius: 12px;
  gap: 1.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pr-body-cta-anchor:hover {
  background:rgba(147, 51, 234, 0.25);
  transform: translateY(-1px);
}

.pr-btn-arrow-icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.pr-btn-arrow-icon svg {
  width: 16px;
  height: 16px;
}

.pr-body-cta-anchor:hover .pr-btn-arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   MEDIA QUERIES (Transforms Layout To Handle Desktop Displays)
   ========================================================================== */
@media (min-width: 768px) {
  .pr-hamburger {
    display: none;
  }

  .pr-links-tray {
    position: static;
    width: auto;
    background: transparent;
    border: none;
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
    max-height: none;
    overflow: visible;
  }

  .pr-item-group {
    flex-direction: row;
    gap: 2.5rem;
  }

  .pr-nav-cta-btn {
    width: auto;
  }
  
  .pr-hero-body {
    padding: 7rem 1.5rem 9rem 1.5rem;
  }
}
/* Base container adjustments to prevent layout jumps during transitions */
.pr-text-highlighter {
  display: inline-block;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from the Left state */
.pr-slide-from-left {
  opacity: 0;
  transform: translateX(-30px);
}

/* Slide in from the Right state */
.pr-slide-from-right {
  opacity: 0;
  transform: translateX(30px);
}


/* Isolated wrapper with breakout properties */
.landing-hero-section {
  --bg-color: #000000;
  --primary-purple: #c084fc; 
  --btn-bg: #ffffff;
  --btn-text: #000000;
  
  background-color: var(--bg-color);
  color: var(--primary-purple);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  box-sizing: border-box;
  position: relative;
  
  /* CRITICAL: Full-width breakout regardless of your theme/wrapper constraints */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden; /* Stops horizontal scrollbar */
}

.landing-hero-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Central container keeps text elements structured nicely */
.landing-hero-section .hero-container {
  width: 100%;
  max-width: 1300px; 
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto 1fr auto;
  position: relative;
  gap: 2rem;
  z-index: 2; /* Keeps text above background lines */
}

/* Typography Scales */
.landing-hero-section h1 {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--primary-purple);
}

/* Grid layout placements */
.landing-hero-section .hero-heading-top {
  grid-column: 1 / 2;
  grid-row: 1;
  align-self: start;
}

.landing-hero-section .hero-heading-bottom {
  grid-column: 2 / 3;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  text-align: right;
}

.landing-hero-section .hero-subtitle {
  grid-column: 2 / 3;
  grid-row: 2;
  justify-self: end;
  align-self: center;
  text-align: right;
  max-width: 260px;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.4;
  color: #d8b4fe; 
}

.landing-hero-section .hero-cta-wrapper {
  grid-column: 1 / 2;
  grid-row: 3;
  align-self: end;
}

/* Button UI */
.landing-hero-section .hero-btn {
  display: inline-block;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.landing-hero-section .hero-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Edge-to-Edge SVG background lines */
.landing-hero-section .hero-vector-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.landing-hero-section .hero-vector-path svg {
  width: 100%;
  height: 100%;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .landing-hero-section {
    padding: 4rem 1.5rem;
  }
  
  .landing-hero-section .hero-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 3rem;
    min-height: auto;
  }

  .landing-hero-section .hero-heading-top {
    grid-column: 1;
    grid-row: 1;
  }

  .landing-hero-section .hero-subtitle {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .landing-hero-section .hero-heading-bottom {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    text-align: left;
  }

  .landing-hero-section .hero-cta-wrapper {
    grid-column: 1;
    grid-row: 4;
    align-self: start;
    width: 100%;
  }
  
  .landing-hero-section .hero-btn {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
  }
}