/* Shupavu site shared styles */
:root {
  --teal: #0F766E;
  --teal-dark: #0B5C56;
  --teal-soft: #CCFBF1;
  --ink: #0F172A;
  --muted: #475569;
  --line: #E2E8F0;
  --bg: #F8FAFC;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --max: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 999px; font-weight: 600; font-size: .95rem;
  padding: .85rem 1.35rem; border: 1px solid transparent; transition: .2s ease;
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-link { color: var(--teal); font-weight: 600; padding: .5rem 0; }
.btn-link:hover { text-decoration: underline; }
.btn-light { background: #fff; color: var(--teal); }
.btn-light:hover { background: #ECFDF5; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1rem; position: relative;
}
.logo img { height: 28px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.1rem; }
.nav-links > a, .nav-links .drop > summary {
  color: var(--muted); font-weight: 500; font-size: .95rem; list-style: none; cursor: pointer;
}
.nav-links > a:hover, .nav-links .drop > summary:hover { color: var(--teal); }
.nav-links .drop > summary::-webkit-details-marker { display: none; }
.nav-links .drop { position: relative; }
.nav-links .drop[open] > summary { color: var(--teal); }
.drop-menu {
  position: absolute; top: calc(100% + .65rem); left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15,23,42,.1); padding: .5rem; z-index: 60;
}
.drop-menu a {
  display: block; padding: .55rem .75rem; border-radius: 8px;
  color: var(--muted); font-size: .9rem; font-weight: 500;
}
.drop-menu a:hover { background: var(--teal-soft); color: var(--teal); }
.mobile-login { display: none; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-actions .login { color: var(--muted); font-weight: 600; font-size: .95rem; }
.nav-actions .login:hover { color: var(--teal); }
.menu-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; width: 42px; height: 42px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto;
}

/* Page chrome */
.page-hero {
  background: linear-gradient(180deg, #F0FDFA 0%, #ffffff 70%);
  padding: 3rem 0 2rem;
}
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--teal); font-weight: 600; font-size: .85rem;
  background: var(--teal-soft); padding: .35rem .7rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15; letter-spacing: -.03em; font-weight: 800;
  margin-bottom: .85rem; max-width: 22ch;
}
.page-hero .lead { color: var(--muted); font-size: 1.05rem; max-width: 54ch; margin-bottom: 1.25rem; }
.page-hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center;
}
.hero-visual {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow); overflow: hidden;
}
.hero-visual img { width: 100%; }

section { padding: 3.5rem 0; }
.section-kicker { color: var(--teal); font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .6rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.02em; font-weight: 800; margin-bottom: .75rem; }
.section-lead { color: var(--muted); max-width: 54ch; margin-bottom: 2rem; }
.prose { max-width: 70ch; }
.prose h2 { font-size: 1.35rem; margin: 1.75rem 0 .7rem; letter-spacing: -.02em; }
.prose h3 { font-size: 1.1rem; margin: 1.25rem 0 .45rem; }
.prose p { color: var(--muted); margin-bottom: .85rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.2rem; color: var(--muted); }
.prose li { margin-bottom: .35rem; }
.prose a { color: var(--teal); font-weight: 600; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.25rem;
  background: #fff; transition: .2s ease;
}

/* Roles: 4-up on desktop, swipe carousel on mobile */
.role-swipe { margin-top: .25rem; }
.role-swipe-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.role-swipe-dots { display: none; }
.role-card h3 { color: var(--teal); }
.card:hover { border-color: #99F6E4; box-shadow: 0 10px 24px rgba(15,118,110,.08); }
.card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.card p, .card li { color: var(--muted); font-size: .92rem; }
.card ul { list-style: none; display: grid; gap: .35rem; margin-top: .75rem; }
.card li { padding-left: 1.15rem; position: relative; color: var(--ink); font-weight: 500; }
.card li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .45rem; height: .45rem; border-radius: 50%; background: var(--teal);
}
.price { font-size: 1.5rem; font-weight: 800; color: var(--teal); margin: .35rem 0; }
.meta { color: var(--muted); font-size: .88rem; }

.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  margin-bottom: 3rem;
}
.feature.reverse .feature-copy { order: 2; }
.feature.reverse .feature-media { order: 1; }
.feature h3 { font-size: 1.35rem; margin-bottom: .7rem; letter-spacing: -.02em; }
.feature p { color: var(--muted); margin-bottom: 1rem; }
.feature ul { list-style: none; display: grid; gap: .45rem; }
.feature li {
  color: var(--ink); font-weight: 500; font-size: .95rem;
  padding-left: 1.4rem; position: relative;
}
.feature li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .55rem; height: .55rem; border-radius: 50%; background: var(--teal);
}
.feature-media {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  background: #fff; box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.cta-band {
  background: linear-gradient(135deg, #0F766E, #115E59 55%, #134E4A);
  color: #fff; border-radius: 24px; padding: 2.5rem; display: flex;
  justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); letter-spacing: -.02em; margin-bottom: .4rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 42ch; }
.cta-band .btn-primary { background: #fff; color: var(--teal); }
.cta-band .btn-primary:hover { background: #ECFDF5; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary {
  cursor: pointer; font-weight: 600; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal); font-size: 1.25rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: .7rem; max-width: 70ch; }
.faq-cat { margin: 2rem 0 1rem; font-size: 1.15rem; color: var(--teal); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; }
.contact-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.25rem; margin-bottom: 1rem; background: var(--bg);
}
.contact-card h3 { margin-bottom: .35rem; }
.contact-card p, .contact-card a { color: var(--muted); }
.contact-card a { color: var(--teal); font-weight: 600; }
.contact-card a.btn-primary {
  color: #fff;
  display: inline-flex;
}
.contact-card a.btn-primary:hover { color: #fff; }
.form label { display: block; font-weight: 600; font-size: .9rem; margin: .85rem 0 .35rem; }
.form input, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem 1rem; font: inherit; background: #fff;
}
.form input:focus, .form textarea:focus { outline: 2px solid #99F6E4; border-color: var(--teal); }
.form .hint { color: var(--muted); font-size: .85rem; margin-top: .75rem; }
.form-success {
  display: none; background: #ECFDF5; border: 1px solid #99F6E4; color: var(--teal-dark);
  padding: 1rem; border-radius: 12px; margin-bottom: 1rem;
}
.form-success.show { display: block; }
.form-error {
  display: none; background: #FEF2F2; border: 1px solid #FECACA; color: #B91C1C;
  padding: 1rem; border-radius: 12px; margin-bottom: 1rem;
}
.form-error.show { display: block; }
.form .btn[disabled] { opacity: .6; cursor: not-allowed; }

.pricing-card {
  border: 2px solid var(--teal); border-radius: 20px; padding: 2rem;
  background: #fff; max-width: 480px; box-shadow: var(--shadow);
}
.pricing-card .amount { font-size: 2.75rem; font-weight: 800; letter-spacing: -.03em; }
.pricing-card .interval { color: var(--muted); margin-bottom: 1rem; }
.pricing-card ul { list-style: none; display: grid; gap: .55rem; margin: 1.25rem 0 1.5rem; }
.pricing-card li { padding-left: 1.4rem; position: relative; font-weight: 500; }
.pricing-card li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .55rem; height: .55rem; border-radius: 50%; background: var(--teal);
}

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.product-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.25rem; background: #fff;
  display: flex; flex-direction: column; gap: .35rem; transition: .2s ease;
}
.product-card:hover { border-color: #99F6E4; box-shadow: 0 10px 24px rgba(15,118,110,.08); }
.product-emoji {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--teal-soft); font-size: 1.6rem; margin-bottom: .5rem;
}
.product-card h3 { font-size: 1.05rem; }
.badge {
  display: inline-flex; align-items: center; gap: .25rem;
  background: var(--teal-soft); color: var(--teal); font-size: .75rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: 999px; width: fit-content;
}

.breadcrumbs { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--teal); font-weight: 500; }

footer {
  background: #0B3B38; color: rgba(255,255,255,.86); padding: 3rem 0 1.5rem; margin-top: 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.footer-brand p { margin-top: .85rem; max-width: 32ch; color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-brand img { height: 26px; filter: brightness(0) invert(1); }
.footer-col h4 { color: #fff; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .85rem; }
.footer-col a { display: block; color: rgba(255,255,255,.72); margin-bottom: .45rem; font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.55);
}

@media (max-width: 900px) {
  .page-hero-grid, .feature, .feature.reverse, .card-grid, .footer-grid, .contact-grid, .shop-grid {
    grid-template-columns: 1fr;
  }
  .card-grid, .shop-grid { grid-template-columns: 1fr 1fr; }

  .role-swipe {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .role-swipe-track {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: .35rem;
  }
  .role-swipe-track::-webkit-scrollbar { display: none; }
  .role-swipe-track > .role-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
    min-height: 100%;
  }
  .role-swipe-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 1rem;
    padding-inline: 1rem;
  }
  .role-swipe-dots button {
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #CBD5E1;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
  }
  .role-swipe-dots button[aria-current="true"] {
    width: 1.25rem;
    background: var(--teal);
  }
  .feature.reverse .feature-copy, .feature.reverse .feature-media { order: initial; }
  .nav-links, .nav-actions .login { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-actions .btn-primary { padding: .7rem 1rem; font-size: .88rem; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 68px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem; gap: .85rem;
    box-shadow: 0 12px 30px rgba(15,23,42,.08);
  }
  .nav.open .nav-links .drop-menu {
    position: static; box-shadow: none; border: none; padding: .25rem 0 .25rem .75rem;
  }
  .nav.open .nav-links .mobile-login {
    display: inline-flex; margin-top: .35rem; padding-top: .85rem;
    border-top: 1px solid var(--line); font-weight: 600; color: var(--teal);
  }
  .page-hero h1 { max-width: none; }
  section { padding: 2.75rem 0; }
  .cta-band { padding: 1.75rem; }
}
@media (max-width: 560px) {
  .card-grid, .shop-grid { grid-template-columns: 1fr; }
  .cta-row .btn, .page-hero .btn { width: 100%; }
}


/* Pricing grid — mockup 3-card layout */
.pricing-page .page-hero {
  background: #F8FAFC;
  padding-bottom: 1.5rem;
}
.pricing-section {
  background: #F8FAFC;
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}
.pricing-hero-center { text-align: center; }
.pricing-hero-center h1 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
}
.pricing-hero-center .lead {
  margin-inline: auto;
  margin-bottom: 0;
  font-size: 1.05rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: .5rem;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}
.price-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 16px 40px rgba(15,118,110,.12);
}
.price-card .plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: 999px; white-space: nowrap;
}
.price-card .plan-icon {
  width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal); margin-bottom: .9rem;
}
.price-card h2 { font-size: 1.15rem; margin-bottom: .45rem; letter-spacing: -.02em; }
.price-card .amount {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.03em;
  line-height: 1.2;
  white-space: nowrap;
}
.price-card .interval {
  color: var(--muted);
  font-size: .95rem;
  margin: .45rem 0 1.1rem;
  font-weight: 500;
}
.price-card .sms-box {
  display: flex; align-items: flex-start; gap: .7rem;
  background: #F0FDFA; border: 1px solid #99F6E4; border-radius: 12px;
  padding: .85rem .9rem; margin-bottom: 1rem;
  color: var(--teal-dark);
}
.price-card .sms-box-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px;
  display: grid; place-items: center; background: #fff; color: var(--teal);
}
.price-card .sms-box strong {
  display: block; font-size: .95rem; font-weight: 700; color: var(--teal-dark);
}
.price-card .sms-box span {
  display: block; font-size: .85rem; color: var(--muted); margin-top: .2rem; font-weight: 500;
}
.price-card .addon-block { margin-bottom: 1.1rem; }
.price-card .addon-block h3 {
  font-size: .95rem; font-weight: 700; margin-bottom: .4rem; letter-spacing: -.01em; color: var(--ink);
}
.price-card .addon-price {
  font-size: 1.15rem; font-weight: 800; color: var(--teal); margin: 0; letter-spacing: -.02em;
}
.price-card .addon-hint {
  color: var(--muted); font-size: .88rem; margin: .25rem 0 0; font-weight: 500;
}
.price-card .addon-block ul { margin-bottom: 0; }
.price-card ul { list-style: none; display: grid; gap: .45rem; margin-bottom: 1.25rem; flex: 1; }
.price-card li {
  font-size: .92rem; font-weight: 500; padding-left: 1.35rem; position: relative;
}
.price-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 700;
}
.price-card .btn { width: 100%; margin-top: auto; }
.price-card .btn-outline {
  background: transparent; color: var(--teal); border: 1.5px solid var(--teal);
}
.price-card .btn-outline:hover { background: var(--teal-soft); }
.pricing-note {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  text-align: center; color: var(--muted); font-size: .9rem; margin-top: 1.75rem;
}
.pricing-note-icon {
  width: 1.15rem; height: 1.15rem; border-radius: 999px; flex-shrink: 0;
  display: inline-grid; place-items: center;
  border: 1.5px solid #94A3B8; color: #64748B;
  font-size: .7rem; font-weight: 700; font-style: italic; line-height: 1;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .price-card.featured { order: -1; }
  .price-card .amount { white-space: normal; font-size: 1.45rem; }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.4;
  color: var(--ink);
}
.testimonial-card .who {
  display: flex; align-items: center; gap: .75rem; margin-top: auto;
}
.testimonial-card .who img {
  width: 48px; height: 48px; border-radius: 999px; object-fit: cover;
  border: 2px solid var(--teal-soft);
}
.testimonial-card .who strong { display: block; font-size: .95rem; }
.testimonial-card .who span { color: var(--muted); font-size: .85rem; }
.hero-visual.people img { width: 100%; height: auto; object-fit: cover; }
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* Motion — subtle, professional, respects reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: .08s; }
  .reveal-delay-2 { transition-delay: .16s; }
  .reveal-delay-3 { transition-delay: .24s; }
  .reveal-delay-4 { transition-delay: .32s; }

  .hero-grid > div:first-child { animation: heroIn .8s ease both; }
  .hero-visual { animation: heroIn .9s ease .12s both; }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
  }

  .btn-primary, .btn-ghost, .btn-outline, .btn-link, .price-card, .role-card, .testimonial-card, .feature-media {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .2s ease, color .2s ease;
  }
  .btn-primary:hover, .btn-ghost:hover { transform: translateY(-1px); }
  .price-card:hover, .role-card:hover, .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15,23,42,.08);
  }
  .feature-media:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15,23,42,.1);
  }
  .hero-visual {
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .hero-visual:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(15,23,42,.14);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
