/* Agendo - index.html only.  Loads after assets/css/site.css. */

/* ========================
   SECTIONS — FULL BLEED
   ======================== */
.panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.panel-half {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  background: linear-gradient(160deg, #FBFBFB 0%, #F9DEDC 60%, #f0eaf6 100%);
  text-align: center;
  flex-direction: column;
  padding-top: 8rem;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 100, 143, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero .panel-content {
  position: relative;
  z-index: 2;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(229, 100, 143, 0.3);
  border-radius: 2rem;
}
.hero h1 {
  font-family: 'Arya', sans-serif;
  font-weight: 700;
  color: var(--body-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 5.5rem;
  }
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--pink-primary), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-secondary);
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.15rem;
  }
}
.store-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .store-badge {
    padding: 0.6rem 1.2rem;
  }
}
.store-badge:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}
.store-badge-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.store-badge-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--body-secondary);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: pulse-down 2s ease-in-out infinite;
}
.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
}
@keyframes pulse-down {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
}

/* ========================
   BUILT FOR — QUOTE PANEL
   ======================== */
.built-for {
  background: linear-gradient(to bottom, var(--section-purple), var(--section-purple) 50%, var(--section-brown));
  text-align: center;
}
.built-for h2 {
  font-family: 'Arya', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--body-primary);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .built-for h2 {
    font-size: 2rem;
  }
}
.quote-block {
  font-family: 'Arya', sans-serif;
  font-size: 1.75rem;
  color: var(--blue-secondary);
  font-style: italic;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .quote-block {
    font-size: 2.75rem;
  }
}
@media (min-width: 1024px) {
  .quote-block {
    font-size: 3.25rem;
  }
}

/* ========================
   NO MORE — DARK PANEL
   ======================== */
.no-more {
  background: var(--section-brown);
  color: var(--body-primary);
}
.no-more .panel-content {
  max-width: 900px;
}
.no-more h2 {
  font-family: 'Arya', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .no-more h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .no-more h2 {
    font-size: 3.75rem;
  }
}
.no-more-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .no-more-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 4rem;
  }
}
.no-more-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.no-more-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid var(--pink-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.no-more-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--pink-primary);
}
.no-more-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body-secondary);
  font-weight: 300;
}
@media (min-width: 768px) {
  .no-more-item p {
    font-size: 1.1rem;
  }
}

/* ========================
   FEATURES — IMMERSIVE PANELS
   ======================== */
.features-section {
  background: var(--background);
}
.features-header {
  text-align: center;
  padding: 6rem 2rem 3rem;
}
.features-header h2 {
  font-family: 'Arya', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--body-primary);
}
@media (min-width: 768px) {
  .features-header h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .features-header h2 {
    font-size: 3.75rem;
  }
}
.feature-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem 5rem;
  position: relative;
}
@media (min-width: 768px) {
  .feature-panel {
    flex-direction: row;
    padding: 4rem 2rem 6rem;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-panel.reverse {
    flex-direction: row-reverse;
  }
}
.feature-phone {
  flex-shrink: 0;
  width: 220px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  aspect-ratio: 9 / 19.5;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .feature-phone {
    width: 280px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .feature-phone {
    width: 320px;
  }
}
.feature-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-phone.has-frame {
  border: 7px solid #ddd5e2;
  background: #ddd5e2;
}
.feature-text {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .feature-text {
    text-align: left;
  }
}
.feature-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 1rem;
}
.feature-text h3 {
  font-family: 'Arya', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .feature-text h3 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .feature-text h3 {
    font-size: 2.75rem;
  }
}
.feature-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-secondary);
  font-weight: 300;
  max-width: 28rem;
}
@media (min-width: 768px) {
  .feature-text p {
    font-size: 1.1rem;
  }
}
.feature-divider {
  width: 60px;
  height: 1px;
  background: var(--border-color);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .feature-divider {
    width: 100px;
  }
}

/* ========================
   TEAM SECTION
   ======================== */
.team-section {
  background: var(--section-warm);
  padding: 6rem 2rem;
}
.team-section .panel-content {
  max-width: 1000px;
}
.team-section h2 {
  font-family: 'Arya', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 3.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .team-section h2 {
    font-size: 3rem;
  }
}
.team-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
.team-member {
  display: flex;
  gap: 1.5rem;
}
.team-photo {
  flex-shrink: 0;
  width: 110px;
  height: 150px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #ddd;
}
@media (min-width: 768px) {
  .team-photo {
    width: 140px;
    height: 190px;
  }
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info h3 {
  font-family: 'Arya', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .team-info h3 {
    font-size: 1.25rem;
  }
}
.team-info .role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-info .bio {
  font-size: 0.85rem;
  color: var(--body-secondary);
  line-height: 1.7;
  font-weight: 300;
}
@media (min-width: 768px) {
  .team-info .bio {
    font-size: 0.95rem;
  }
}
.linkedin-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  margin-left: 0.5rem;
  position: relative;
  top: 2px;
}
.linkedin-icon svg {
  width: 16px;
  height: 16px;
  color: var(--body-secondary);
  transition: color 0.2s;
}
.linkedin-icon:hover svg {
  color: var(--pink-primary);
}
.team-advisor {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(46, 38, 35, 0.12);
}
.team-advisor .advisor-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}
.team-advisor .team-member {
  max-width: 480px;
  margin: 0 auto;
}
.team-partners {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(46, 38, 35, 0.12);
  text-align: center;
}
.team-partners .partners-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.partner-logo {
  display: inline-block;
}
.partner-logo img {
  width: 200px;
  max-width: 60%;
  height: auto;
  transition: opacity 0.2s;
}
.partner-logo:hover img {
  opacity: 0.75;
}
.team-partners .partners-blurb {
  font-size: 0.85rem;
  color: var(--body-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin: 1.5rem auto 0;
}
@media (min-width: 768px) {
  .team-partners .partners-blurb {
    font-size: 0.95rem;
  }
}

/* ========================
   REVIEWS (SCREENSHOTS)
   ======================== */
.reviews-section {
  background: var(--section-purple);
  padding: 6rem 2rem;
}
.reviews-section .panel-content {
  max-width: 1150px;
}
.reviews-section h2 {
  font-family: 'Arya', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 3.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .reviews-section h2 {
    font-size: 3rem;
  }
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 30rem;
    margin: 0 auto;
  }
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(46, 38, 35, 0.06);
}
.review-stars {
  color: #F5A623;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.review-text {
  margin: 0;
  color: var(--body-primary);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
}
.review-source {
  margin: 0;
  padding-top: 0.15rem;
  color: var(--body-secondary);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ========================
   FEEDBACK SECTION
   ======================== */
.feedback-section {
  background: var(--background);
  padding: 6rem 2rem;
}
.feedback-section .panel-content {
  max-width: 700px;
}
.feedback-section h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .feedback-section h2 {
    font-size: 2.5rem;
  }
}
.feedback-section .contact-subtitle {
  font-size: 1rem;
  color: var(--body-secondary);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--pink-primary);
  color: #fff;
  border: none;
  border-radius: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(229, 100, 143, 0.3);
}
.contact-btn svg {
  width: 18px;
  height: 18px;
}
