/* ── About page ── */
.ab-page { padding: 2rem 0 4rem; }

/* Hero */
.ab-hero {
  background: linear-gradient(135deg, #C7D2FE 0%, #DDD6FE 50%, #FBCFE8 100%);
  border-radius: 20px;
  border: 1px solid #C4B5FD;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  text-align: center;
}
.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.55) 0%, transparent 55%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 45%);
}
.ab-hero-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6D28D9;
  margin-bottom: 0.75rem;
  position: relative;
}
.ab-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #3730A3;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.1rem;
  position: relative;
}
.ab-hero-sub {
  font-size: 1.1rem;
  color: #4C4A6E;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  position: relative;
}
.ab-hero-cta {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background: #3730A3;
  color: #fff;
  border: none;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(55,48,163,0.3);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  position: relative;
  margin: 0.3rem;
}
.ab-hero-cta:hover {
  background: #4338CA;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(55,48,163,0.35);
  text-decoration: none;
}

/* Section headings */
.ab-section-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6D28D9;
  margin-bottom: 0.4rem;
}
.ab-section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1E1B4B;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.ab-section-sub {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

/* Feature cards */
.ab-features { margin-bottom: 3.5rem; }
.ab-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--ds-border);
  box-shadow: var(--ds-sh);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform 0.18s, box-shadow 0.18s;
}
.ab-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(55,48,163,0.12), 0 2px 6px rgba(0,0,0,0.05);
}
.ab-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.ab-card-icon-indigo { background: #EEF2FF; color: #4338CA; }
.ab-card-icon-violet { background: #F5F3FF; color: #7C3AED; }
.ab-card-icon-blue   { background: var(--ds-blue-lt); color: var(--ds-blue); }
.ab-card-icon-green  { background: var(--ds-green-lt); color: var(--ds-green); }
.ab-card-icon-amber  { background: #FFFBEB; color: var(--ds-amber); }
.ab-card-icon-pink   { background: #FDF2F8; color: #DB2777; }
.ab-card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1E1B4B;
  margin-bottom: 0.4rem;
}
.ab-card p {
  font-size: 0.88rem;
  color: var(--ds-mid);
  line-height: 1.6;
  margin: 0;
}

/* How it works */
.ab-how { margin-bottom: 3.5rem; }
.ab-steps {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--ds-border);
  box-shadow: var(--ds-sh);
  overflow: hidden;
}
.ab-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #F1F5F9;
}
.ab-step:last-child { border-bottom: none; }
.ab-step-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #C7D2FE;
  width: 2rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.15rem;
}
.ab-step-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1E1B4B;
  margin-bottom: 0.2rem;
}
.ab-step-body {
  font-size: 0.88rem;
  color: var(--ds-mid);
  line-height: 1.6;
  margin: 0;
}

/* Use cases */
.ab-uses { margin-bottom: 3.5rem; }
.ab-use-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--ds-border);
  background: #fff;
  color: #3730A3;
  margin: 0.3rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* CTA banner */
.ab-cta {
  background: linear-gradient(135deg, #3730A3 0%, #4F46E5 60%, #7C3AED 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  color: #fff;
}
.ab-cta h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.ab-cta p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.ab-cta-btn {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background: #fff;
  color: #3730A3;
  border: none;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
  margin: 0.3rem;
}
.ab-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  color: #3730A3;
  text-decoration: none;
}
.ab-cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.ab-cta-btn-outline:hover { color: #fff; border-color: #fff; }

/* ── Mockup section ── */
.ab-mockup-section { margin-bottom: 3.5rem; }

.ab-browser {
  background: #F8FAFC;
  border-radius: 16px;
  border: 1px solid var(--ds-border);
  box-shadow: 0 8px 40px rgba(55,48,163,0.13), 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}
.ab-browser-bar {
  background: #F1F5F9;
  border-bottom: 1px solid var(--ds-border);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ab-browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.ab-browser-dot:nth-child(1) { background: #FC8181; }
.ab-browser-dot:nth-child(2) { background: #F6AD55; }
.ab-browser-dot:nth-child(3) { background: #68D391; }
.ab-browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--ds-border);
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  font-family: 'Nunito', monospace;
  font-size: 0.72rem;
  color: var(--ds-lt);
  margin-left: 0.4rem;
}
.ab-browser-body { padding: 1.25rem; }

/* Plan header inside mockup */
.mk-plan-hero {
  background: linear-gradient(135deg, #C7D2FE 0%, #DDD6FE 55%, #FBCFE8 100%);
  border-radius: 12px;
  border: 1px solid #C4B5FD;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mk-plan-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #3730A3;
  letter-spacing: -0.02em;
}
.mk-plan-meta {
  font-size: 0.78rem;
  color: #6D6A8A;
  font-weight: 500;
  margin-top: 0.15rem;
}
.mk-plan-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255,255,255,0.65);
  color: #3730A3;
  border: 1.5px solid #A5B4FC;
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}

/* Grid inside mockup */
.mk-grid { display: grid; grid-template-columns: 1fr 280px; gap: 1rem; }
@media (max-width: 700px) { .mk-grid { grid-template-columns: 1fr; } }

/* Column label */
.mk-col-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ds-lt);
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

/* Individual event card */
.mk-event {
  background: #fff;
  border: 1.5px solid var(--ds-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.mk-event::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: #C7D2FE;
  transition: background 0.15s;
}
.mk-event:hover { border-color: #A5B4FC; box-shadow: 0 2px 12px rgba(99,102,241,0.1); transform: translateX(2px); }
.mk-event:hover::before { background: #6366F1; }
.mk-event.mk-event-open { border-color: #818CF8; box-shadow: 0 2px 14px rgba(99,102,241,0.13); }
.mk-event.mk-event-open::before { background: #4F46E5; }

.mk-event-fri::before  { background: #86EFAC; }
.mk-event-fri:hover::before, .mk-event-fri.mk-event-open::before { background: #16A34A; }
.mk-event-sat::before  { background: #93C5FD; }
.mk-event-sat:hover::before, .mk-event-sat.mk-event-open::before { background: var(--ds-blue); }
.mk-event-sat2::before { background: #FCA5A5; }
.mk-event-sat2:hover::before, .mk-event-sat2.mk-event-open::before { background: var(--ds-red); }
.mk-event-sun::before  { background: #FCD34D; }
.mk-event-sun:hover::before, .mk-event-sun.mk-event-open::before { background: var(--ds-amber); }

.mk-event-header { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.mk-event-left { display: flex; align-items: center; gap: 0.65rem; flex: 1; min-width: 0; }
.mk-event-day {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: #A5B4FC;
  border-radius: 6px;
  padding: 0.2rem 0.45rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.mk-event-day-fri  { background: #16A34A; }
.mk-event-day-sat  { background: var(--ds-blue); }
.mk-event-day-sat2 { background: var(--ds-red); }
.mk-event-day-sun  { background: var(--ds-amber); }

.mk-event-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1E1B4B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mk-event-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.mk-event-time { font-size: 0.75rem; color: #64748B; white-space: nowrap; }
.mk-chevron { color: #CBD5E1; font-size: 0.75rem; transition: transform 0.2s; }
.mk-event.mk-event-open .mk-chevron { transform: rotate(180deg); color: #6366F1; }

.mk-event-detail {
  display: none;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid #F1F5F9;
}
.mk-event.mk-event-open .mk-event-detail { display: block; }
.mk-detail-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ds-mid);
  margin-bottom: 0.3rem;
}
.mk-detail-row i { color: #818CF8; flex-shrink: 0; font-size: 0.78rem; }
.mk-detail-row:last-child { margin-bottom: 0; }
.mk-rsvp-row { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.55rem; }
.mk-rsvp-chip {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.18rem 0.6rem;
}
.mk-rsvp-yes  { background: var(--ds-green-lt); color: var(--ds-green); border: 1px solid #A7F3D0; }
.mk-rsvp-no   { background: #FEF2F2; color: var(--ds-red); border: 1px solid #FECACA; }
.mk-rsvp-pend { background: #FFFBEB; color: var(--ds-amber); border: 1px solid #FDE68A; }

/* Invitees column */
.mk-invitee-card {
  background: #fff;
  border: 1.5px solid var(--ds-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.mk-invitee-list { list-style: none; padding: 0; margin: 0; }
.mk-invitee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #F8FAFC;
  font-size: 0.82rem;
  color: #334155;
}
.mk-invitee-item:last-child { border-bottom: none; }
.mk-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.mk-av-a { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.mk-av-b { background: linear-gradient(135deg, #2563EB, #0EA5E9); }
.mk-av-c { background: linear-gradient(135deg, #059669, #10B981); }
.mk-av-d { background: linear-gradient(135deg, #D97706, #F59E0B); }
.mk-av-e { background: linear-gradient(135deg, #DC2626, #F87171); }
.mk-invitee-name { flex: 1; font-weight: 600; }
.mk-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mk-status-yes  { background: #10B981; }
.mk-status-pend { background: #F59E0B; }
.mk-status-no   { background: #EF4444; }
.mk-invitee-count {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ds-lt);
  text-align: right;
  margin-top: 0.5rem;
}

/* Mockup hint */
.ab-mockup-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ds-lt);
  margin-top: 0.75rem;
  font-style: italic;
}
