/* ===== PRIZE THEME ===== */

/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --indigo:    #1A1A2E;
  --indigo-2:  #16213E;
  --saffron:   #F97316;
  --saffron-2: #EA580C;
  --cream:     #FEF7EC;
  --cream-2:   #FEF3DC;
  --white:     #FFFFFF;
  --dark:      #111827;
  --muted:     #6B7280;
  --green:     #22C55E;
  --amber:     #F59E0B;
  --border:    rgba(255,255,255,0.1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ===== NAV ===== */
.nav {
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 247, 236, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,46,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(0,0,0,0.12);
}

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: 4rem 2rem 3rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--indigo);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-lede {
  font-size: 1.05rem;
  color: #4B5563;
  max-width: 38ch;
  line-height: 1.7;
}

/* Hero Visual - Card Stack */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 24px rgba(26,26,46,0.08), 0 1px 3px rgba(0,0,0,0.04);
  border-left: 4px solid var(--saffron);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-card-2 {
  border-left-color: var(--green);
  animation-delay: -2s;
}

.hero-card-3 {
  border-left-color: var(--amber);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  margin-bottom: 0.6rem;
}
.hero-card-dot-green { background: var(--green); }
.hero-card-dot-amber { background: var(--amber); }

.hero-card-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 0.25rem;
}

.hero-card-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== STATS ===== */
.stats {
  background: var(--indigo);
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--cream);
  padding: 5rem 2rem;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--indigo);
  font-weight: 600;
  margin-bottom: 3rem;
  max-width: 20ch;
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(26,26,46,0.06);
  border: 1px solid rgba(26,26,46,0.06);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,26,46,0.1);
}

.product-card-schools { border-top: 4px solid var(--saffron); }
.product-card-campus { border-top: 4px solid var(--indigo); }

.product-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.product-card-schools .product-icon {
  background: rgba(249,115,22,0.1);
  color: var(--saffron);
}
.product-card-campus .product-icon {
  background: rgba(26,26,46,0.08);
  color: var(--indigo);
}

.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--saffron);
  background: rgba(249,115,22,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.product-badge-campus {
  color: var(--indigo);
  background: rgba(26,26,46,0.08);
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
}

.product-card-campus .product-features li::before {
  background: var(--indigo);
}

.products-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  padding: 1.25rem;
  background: rgba(249,115,22,0.05);
  border-radius: 10px;
  border-left: 3px solid var(--saffron);
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--indigo);
  padding: 5rem 2rem;
}

.portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.portfolio .section-eyebrow { color: var(--saffron); }

.portfolio .section-heading {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.portfolio-body {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.portfolio-proof {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.proof-item {}

.proof-label {
  font-weight: 600;
  color: var(--saffron);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.proof-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Portfolio Phone Mockup */
.portfolio-visual {
  display: flex;
  justify-content: center;
}

.portfolio-phone {
  width: 260px;
  background: #111827;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  position: relative;
}

.phone-notch {
  width: 80px; height: 24px;
  background: #111827;
  border-radius: 20px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.08);
}

.phone-screen {
  background: #1A1A2E;
  border-radius: 24px;
  padding: 1.25rem;
  min-height: 400px;
  border: 1px solid rgba(255,255,255,0.08);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.phone-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}

.phone-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: var(--green);
}

.phone-section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.phone-entry {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.phone-entry:last-of-type { border-bottom: none; }

.phone-entry-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(249,115,22,0.2);
  flex-shrink: 0;
}

.phone-entry-content {}

.phone-entry-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.phone-entry-school {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.15rem;
}

.phone-entry-date {
  font-size: 0.65rem;
  color: var(--saffron);
}

.phone-qr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.qr-box {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 6px;
  flex-shrink: 0;
}

.qr-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--cream-2);
  padding: 5rem 2rem;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--indigo);
  line-height: 1.5;
  font-style: italic;
  max-width: 56ch;
  margin: 0 auto 3rem;
}

.manifesto-divider {
  width: 60px;
  height: 3px;
  background: var(--saffron);
  margin: 0 auto 3rem;
  border-radius: 2px;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.manifesto-stat {
  text-align: center;
}

.manifesto-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 0.25rem;
}

.manifesto-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--indigo);
  padding: 4rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-mission {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 40ch;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--saffron);
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner,
  .portfolio-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-text { order: 1; }
  .hero-visual { order: 2; }

  .hero-visual {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 60px; height: 1px;
  }

  .manifesto-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-note {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 1.25rem 2rem; }
  .stats { padding: 2rem 1.25rem; }
  .products { padding: 3.5rem 1.25rem; }
  .portfolio { padding: 3.5rem 1.25rem; }
  .manifesto { padding: 3.5rem 1.25rem; }
  .footer { padding: 3rem 1.25rem 2rem; }

  .stat { flex: none; }

  .manifesto-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}