/* ── KakapoKonnect Brand Styles ── */

:root {
  --green-dark:  #1B4332;
  --green-mid:   #2D6A4F;
  --green-light: #52B788;
  --green-pale:  #D8F3DC;
  --cream:       #FDF8F2;
  --pink:        #E8529A;
  --pink-light:  #FFE4F0;
  --pink-pale:   #FFF0F7;
  --gold:        #F9A826;
  --text-dark:   #1A2E1A;
  --text-mid:    #3D5A3D;
  --text-muted:  #6B7E6B;
  --border:      #E2EEE6;
  --shadow:      0 2px 16px rgba(27,67,50,0.10);
  --shadow-lg:   0 8px 40px rgba(27,67,50,0.15);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

/* ── Nav ── */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.5px;
}
.nav-logo .logo-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: background 0.15s, transform 0.1s !important;
}
.nav-cta:hover {
  background: #d0437f !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:last-child { border-bottom: none; color: var(--pink); font-weight: 700; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 55%, #3A8C60 100%);
  color: #fff;
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 24px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -1px;
}
.hero h1 .pink-accent {
  color: #FFB3D4;
}
.hero-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── Signup Box ── */
.signup-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-lg);
}
.signup-box h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
}
.signup-box p.sub {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.form-row {
  display: flex;
  gap: 8px;
}
.form-row input[type="email"] {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.15s;
}
.form-row input[type="email"]:focus {
  border-color: var(--pink);
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover {
  background: #d0437f;
  transform: translateY(-1px);
}
.form-disclaimer {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #FFB3D4;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}

/* ── Sections ── */
.section {
  padding: 80px 24px;
}
.section-light { background: #fff; }
.section-pale  { background: var(--cream); }
.section-pink  { background: var(--pink-pale); }
.section-green { background: var(--green-pale); }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Profile Cards ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.profile-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
  position: relative;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.profile-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  position: relative;
  overflow: hidden;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.match-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink);
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}
.profile-body {
  padding: 16px;
}
.profile-body h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}
.profile-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.tag {
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}
.profile-bio {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0 0 14px;
  font-style: italic;
}
.btn-connect {
  width: 100%;
  background: var(--pink-light);
  color: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 10px;
  padding: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-connect:hover {
  background: var(--pink);
  color: #fff;
}

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.step-card.twist {
  border-color: var(--green-light);
  background: var(--green-pale);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card.twist .step-number {
  background: var(--green-light);
  color: var(--green-dark);
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--text-dark);
}
.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Conservation Section ── */
.conservation-box {
  background: var(--green-dark);
  color: #fff;
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.conservation-box h2 {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.conservation-box p {
  opacity: 0.85;
  line-height: 1.7;
  margin: 0 0 24px;
  font-size: 0.98rem;
}
.fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}
.fact-list li::before {
  content: '🌿';
  flex-shrink: 0;
  line-height: 1.5;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.cta-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.cta-form input[type="email"] {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
}
.cta-form input[type="email"]:focus { border-color: var(--pink); }
.cta-note {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Fun Facts Banner ── */
.facts-banner {
  background: var(--pink-pale);
  border-top: 1px solid var(--pink-light);
  border-bottom: 1px solid var(--pink-light);
  padding: 40px 24px;
  text-align: center;
}
.facts-banner p {
  font-size: 1.05rem;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.7;
}
.facts-banner strong { color: var(--pink); }

/* ── Footer ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-bottom p { margin: 0; }

/* ── Thank You Page ── */
.ty-hero {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.ty-hero .big-emoji { font-size: 4rem; margin-bottom: 16px; }
.ty-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -1px;
}
.ty-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.reveal-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid var(--green-pale);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.reveal-card h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--text-dark);
}
.reveal-card p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 16px;
}
.conservation-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.conservation-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-pale);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--green-dark);
  border: 1px solid var(--green-light);
  transition: background 0.15s, transform 0.1s;
}
.conservation-link:hover {
  background: var(--green-light);
  transform: translateX(4px);
}
.conservation-link .link-icon { font-size: 1.5rem; flex-shrink: 0; }
.conservation-link .link-text strong { display: block; font-weight: 700; font-size: 0.95rem; }
.conservation-link .link-text span { font-size: 0.82rem; opacity: 0.75; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .conservation-box { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .profile-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .cta-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding: 60px 20px 80px; }
  .signup-box { padding: 24px; }
}
