/* ============================================
   THE BLUEPRINT VAULT — PREMIUM CSS
   ============================================ */

:root {
  --primary-bg: #050816;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --accent-1: #7cf3ff;
  --accent-2: #7cf3ff;
  --accent-3: #ffc66b;
  --radius-xl: 20px;
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(124, 243, 255, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar-thumb {
  background: rgba(124, 243, 255, 0.3);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 243, 255, 0.5);
}

/* Max width container */
.max-width {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

p {
  line-height: 1.6;
}

a {
  color: var(--text-primary);
  transition: color 0.2s;
}

button {
  font-family: inherit;
}

/* ============================================
   NAV
   ============================================ */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(5, 8, 22, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 12px 6vw;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.nav-logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7cf3ff, #6be5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #050816;
  font-size: 16px;
}

.nav-logo-text {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-2);
}

/* Language Selector */
.lang-select {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 22, 0.6);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-select:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text-primary);
}

.lang-select:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 10px rgba(124, 243, 255, 0.3);
}

@media (max-width: 720px) {
  .lang-select {
    padding: 6px 10px;
    font-size: 12px;
  }
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  border-radius: 999px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #7cf3ff, #6be5ff);
  color: #050816;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(124, 243, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 243, 255, 0.4);
}

.btn-ghost {
  border-radius: 999px;
  padding: 12px 26px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: 80px 6vw 100px;
  overflow: hidden;
}

.hero-gradient-orbit {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 243, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-orbit-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 999px;
  opacity: 0.15;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7cf3ff, transparent);
  top: -100px;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6be5ff, transparent);
  bottom: -50px;
  left: 5%;
  animation: float 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ffc66b, transparent);
  top: 50%;
  left: 50%;
  opacity: 0.08;
  animation: float 12s ease-in-out infinite;
}

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

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 52px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, #7cf3ff, #ffc66b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-pill-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(124, 243, 255, 0.05);
  border: 1px solid rgba(124, 243, 255, 0.2);
  font-size: 13px;
  color: var(--text-muted);
  width: fit-content;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .hero-cta-row {
    flex-direction: column;
  }
}

.hero-mini-note {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-mini-note span {
  color: var(--accent-3);
  font-weight: 600;
}

/* Hero visual section */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.floating-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  animation: float-card 3s ease-in-out infinite;
}

.floating-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.floating-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(124, 243, 255, 0.1);
  color: var(--accent-2);
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 0.5s; }
.card-3 { animation-delay: 1s; }

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

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 60px 6vw;
}

.section-how {
  background: radial-gradient(circle at top, #161832, #050816 50%);
}

.section-products {
  background: radial-gradient(circle at 0 20%, #17273b, #050816 55%);
}

.section-bundles {
  background: radial-gradient(circle at 100% 0, #281b3f, #050816 55%);
}

.section-proof {
  background: radial-gradient(circle at 0 100%, #20303d, #050816 55%);
}

.section-faq {
  background: radial-gradient(circle at 100% 100%, #271b34, #050816 55%);
}

.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 26px;
}

/* ============================================
   STEPS GRID
   ============================================ */

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

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.step-badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-3);
  margin-bottom: 8px;
  display: inline-block;
}

.step-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 243, 255, 0.18), transparent 65%);
  right: -40px;
  bottom: -80px;
  opacity: 0.7;
}

/* ============================================
   PRODUCT CARDS — ENHANCED
   ============================================ */

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

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.product-card {
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
  cursor: pointer;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(124, 243, 255, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.18s ease-out;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.7);
  border-color: rgba(124, 243, 255, 0.65);
}

.product-card:hover::before {
  opacity: 1;
}

/* Product Image Container */
.product-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(124, 243, 255, 0.05);
  border: 1px solid rgba(124, 243, 255, 0.1);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 243, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.product-card:hover .product-image-overlay {
  opacity: 1;
}

/* Pulsing Glow Animation */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 243, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(124, 243, 255, 0.6); }
}

.product-card:hover .product-image-container {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Gradient Overlays per Product */
.product-card:nth-child(1) .product-image-overlay {
  background: linear-gradient(135deg, rgba(124, 243, 255, 0.2), rgba(255, 198, 107, 0.1));
}

.product-card:nth-child(2) .product-image-overlay {
  background: linear-gradient(135deg, rgba(107, 229, 255, 0.2), rgba(124, 243, 255, 0.15));
}

.product-card:nth-child(3) .product-image-overlay {
  background: linear-gradient(135deg, rgba(255, 122, 229, 0.2), rgba(124, 243, 255, 0.1));
}

.product-card:nth-child(4) .product-image-overlay {
  background: linear-gradient(135deg, rgba(124, 243, 255, 0.25), rgba(255, 198, 107, 0.15));
}

.product-card:nth-child(5) .product-image-overlay {
  background: linear-gradient(135deg, rgba(255, 198, 107, 0.2), rgba(124, 243, 255, 0.1));
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.product-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.product-list {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.product-list li {
  margin-left: 16px;
  margin-bottom: 4px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
}

.product-price span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

.product-cta {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  border: none;
  background: rgba(124, 243, 255, 0.1);
  color: var(--accent-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.16s ease-out, color 0.16s ease-out;
}

.product-cta:hover {
  background: var(--accent-2);
  color: #050816;
}

/* ============================================
   BUNDLES
   ============================================ */

.bundle-row {
  display: grid;
  grid-template-columns: 2.1fr 1.6fr;
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .bundle-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bundle-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #121631, #151339);
  border: 1px solid rgba(124, 243, 255, 0.4);
  padding: 20px 20px 22px;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.bundle-badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 243, 255, 0.13);
  color: var(--accent-2);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
}

.bundle-badge span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.bundle-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.bundle-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.bundle-list {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.bundle-list li {
  margin-left: 16px;
  margin-bottom: 4px;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.bundle-old-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle-new-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-3);
}

.bundle-sub-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.proof-row {
  display: grid;
  grid-template-columns: 2.2fr 1.8fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .proof-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.avatar-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 12px;
}

.avatar-bubble {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7ae5, #7cf3ff);
  border: 2px solid #050816;
  box-shadow: var(--shadow-soft);
}

.avatar-bubble:nth-child(2) {
  margin-left: -10px;
  background: linear-gradient(135deg, #ffc66b, #ff7ae5);
}

.avatar-bubble:nth-child(3) {
  margin-left: -10px;
  background: linear-gradient(135deg, #7cf3ff, #ffc66b);
}

.avatar-more {
  font-size: 12px;
  color: var(--text-muted);
}

.mini-testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
}

@media (max-width: 640px) {
  .mini-testimonials {
    grid-template-columns: minmax(0, 1fr);
  }
}

.mini-quote {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 22, 0.75);
  padding: 10px 12px;
}

.mini-quote span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 22, 0.8);
  padding: 14px 16px;
}

.faq-item h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.final-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 48px 6vw 32px;
  background: #050816;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-vertical a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-links-vertical a:hover {
  color: var(--accent-2);
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-bottom a {
  color: var(--accent-2);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-2);
}

/* Utility classes */
a.btn-link {
  text-decoration: none;
}

.arrow {
  display: inline-block;
  transform: translateY(1px);
}

/* ----------------------------- */
/* THANK YOU PAGE */
/* ----------------------------- */

.thankyou {
  text-align: center;
  padding: 80px 20px 40px;
}

.thankyou-card {
  max-width: 640px;
  margin: 24px auto 18px;
  padding: 20px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(124,243,255,0.06), transparent 60%), #121217;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.8);
  text-align: left;
}

.thankyou-line {
  margin: 8px 0;
  font-size: 14px;
  color: var(--subtle, #b3b3c2);
}

.thankyou-card a {
  color: #7cf3ff;
  text-decoration: none;
}

.thankyou-card a:hover {
  text-decoration: underline;
}

.thankyou-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 26px;
  font-size: 12px;
  color: var(--muted, #8c8c99);
}

.thankyou-badges span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.thankyou-button-primary,
.thankyou-button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.thankyou-button-primary {
  background: linear-gradient(135deg, #7cf3ff, #ff7ae5);
  color: #050509;
  font-weight: 600;
  box-shadow: 0 10px 32px rgba(0,0,0,0.7);
  border: none;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, filter 0.15s ease-out;
}

.thankyou-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.85);
  filter: brightness(1.05);
}

.thankyou-button-ghost {
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: var(--subtle, #b3b3c2);
}

/* Mobile */
@media (max-width: 600px) {
  .thankyou-card {
    text-align: left;
  }
  .thankyou-actions {
    flex-direction: column;
  }
  .thankyou-button-primary,
  .thankyou-button-ghost {
    width: 100%;
  }
}

/* Responsive fixes */
@media (max-width: 640px) {
  h1 {
    font-size: 36px;
  }

  .hero-inner {
    padding: 0 0;
  }

  .section-title {
    font-size: 26px;
  }

  nav {
    padding: 10px 6vw;
  }
}
