img{max-width:100%;height:auto;}
html{font-size:100%;}
:root {
  --clr-black: #000000;
  --clr-pink: #ef9f99;
  --clr-sky: #3bbde7;
  --clr-rose: #a15757;
  --clr-plum: #3f2f33;

  --bg: var(--clr-black);
  --text: #f5f7fa;
  --muted: #cfd6df;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --grad: linear-gradient(135deg, var(--clr-pink), var(--clr-sky));
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  --radius: 20px;
  --space: clamp(16px, 2vw, 28px);
  --maxw: 1200px;

  --font-head: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  background: radial-gradient(1200px 800px at 90% -10%, rgba(59, 189, 231, 0.15), transparent 60%),
              radial-gradient(900px 600px at -10% 110%, rgba(239, 159, 153, 0.15), transparent 60%),
              var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(120%) blur(10px);
  background: rgba(10, 10, 10, 0.6);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 12px; /* Rounded square */
  background: url("Pics/Pip.PNG") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 18px rgba(239, 159, 153, 0.25),
              0 6px 18px rgba(59, 189, 231, 0.25);
}

.brand b {
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

nav a { opacity: 0.9; }
nav a:hover { opacity: 1; }

.cta-header {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--grad);
  color: #0b0f14;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--space) * 2.2) var(--space);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.8rem;
}

.headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.1;
  margin: 8px 0 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  color: #e7ebf1;
  opacity: 0.9;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn.primary {
  background: var(--grad);
  color: #0b0f14;
  box-shadow: var(--shadow);
}

.btn.ghost { background: var(--card); }

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.hero-media { position: relative; isolation: isolate; }

.logo {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  inset: -25% -15% auto auto;
  width: 60%;
  height: 60%;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .35;
  background: var(--grad);
  z-index: -1;
}

.watermark {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 2px;
  opacity: .07;
  font-size: clamp(3rem, 8vw, 7rem);
}

/* Features */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--space) * 2) var(--space);
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 6px;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(239, 159, 153, 0.14);
  border: 1px solid rgba(239, 159, 153, 0.35);
  color: #ffe6e3;
}

.chip.sky {
  background: rgba(59, 189, 231, 0.12);
  border-color: rgba(59, 189, 231, 0.35);
  color: #e5f7ff;
}

.card h3 { margin: 14px 0 8px; font-family: var(--font-head); }
.card p { color: #dfe6ee; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.tile {
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border: 1px solid var(--border);
}

/* CTA Banner */
.cta-banner {
  margin-top: 10px;
  border-radius: var(--radius);
  background: radial-gradient(1200px 600px at 10% -20%, rgba(239, 159, 153, 0.28), transparent 40%),
              radial-gradient(900px 500px at 110% 120%, rgba(59, 189, 231, 0.28), transparent 45%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  padding: clamp(18px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 18px;
  align-items: center;
}

@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* Contact form */
.contact-form { display: grid; gap: 12px; }
.contact-form .label { display:block; font-weight:600; margin:0 0 6px; color:#e7ebf1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: #0f1115;
  border: 1px solid var(--border);
  color: var(--text);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(59,189,231,.6);
  box-shadow: 0 0 0 3px rgba(59,189,231,.18);
}
.contact-form .agree { display:flex; align-items:center; gap:10px; margin-top:4px; }
.contact-form .agree input { width:auto; }

.err { display:block; color:#ffb4b4; font-size:.9rem; min-height:1em; margin-top:6px; }
.hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; } /* honeypot */

.notice {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  display:none;
}
.notice.success { display:block; border-color: rgba(59,189,231,.45); }
.notice.error { display:block; border-color: rgba(239,159,153,.45); }

/* Grids (if not already present) */
.grid2 { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
@media (max-width:720px){ .grid2{ grid-template-columns:1fr; } }


/* Footer */
footer {
  border-top: 1px solid var(--border);
  margin-top: 30px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--space);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.links { display: flex; gap: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}



/* === THANK YOU PAGE STYLES === */
.thankyou-page {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.thankyou-container {
  padding: 2rem;
}

.thankyou-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 0 30px rgba(168, 123, 224, 0.2);
  animation: fadeIn 1.2s ease;
}

.thankyou-card h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #a87be0, #f0c75e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thankyou-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.thankyou-card .btn.primary {
  display: inline-block;
  background: linear-gradient(90deg, #a87be0, #f0c75e);
  color: #000;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.thankyou-card .btn.primary:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #f0c75e, #a87be0);
}

/* Confetti shimmer */
.confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.confetti span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #a87be0, #f0c75e);
  opacity: 0.8;
  animation: confettiFall 5s linear infinite;
  border-radius: 2px;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-10%) rotate(0deg);
    opacity: 0.9;
  }
  100% {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* Fade-out for redirect */
.fade-out {
  opacity: 0;
  transition: opacity 1.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

