:root {
  --primary-bg: #f8f6ff;
  --primary-dark: #020617;
  --primary: #1f2a4d;
  --supporting: #6d28d9;
  --supporting-light: #a855f7;
  --accent: #d6a138;
  --accent-dark: #b8831d;
  --text: #0f172a;
  --muted: #6b7280;
  --surface: #ffffff;
  --surface-strong: #f9fafb;
  --success: #16a34a;
  --danger: #dc2626;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(129, 140, 248, 0.25), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(251, 191, 36, 0.18), transparent 55%),
    linear-gradient(180deg, #fdfbff 0%, #f9fafb 40%, #fefce8 100%);
  background-size: 140% 140%, 140% 140%, 100% 100%;
  background-position: 0% 0%, 100% 100%, 0 0;
  animation: bgWave 32s ease-in-out infinite alternate;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: -15%;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.4) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(148, 163, 184, 0.4) 0, transparent 55%);
  background-size: 80% 80%, 80% 80%;
  background-position: -20% -20%, 120% 120%;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  filter: blur(18px);
  animation: haloDrift 38s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(129, 140, 248, 0.24) 0, transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(248, 250, 252, 0.8) 0, transparent 65%),
    repeating-linear-gradient(
      120deg,
      rgba(148, 163, 184, 0.18) 0,
      rgba(148, 163, 184, 0.18) 1px,
      transparent 1px,
      transparent 26px
    );
  background-size: 120% 120%, 140% 140%, 260px 260px;
  background-position: 0 0, 0 0, 0 0;
  opacity: 0.45;
  mix-blend-mode: soft-light;
  animation: gridFloat 26s linear infinite;
}

@keyframes bgWave {
  0% {
    background-position: 0% 0%, 100% 100%, 0 0;
  }
  50% {
    background-position: 40% 10%, 60% 90%, 0 0;
  }
  100% {
    background-position: 100% 0%, 0% 100%, 0 0;
  }
}

@keyframes haloDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1.05);
    opacity: 0.25;
  }
  50% {
    transform: translate3d(-20px, -10px, 0) scale(1.08);
    opacity: 0.4;
  }
  100% {
    transform: translate3d(10px, 15px, 0) scale(1.06);
    opacity: 0.3;
  }
}

@keyframes gridFloat {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  50% {
    background-position: -40px -20px, 20px 10px, -60px -40px;
  }
  100% {
    background-position: 0 0, 0 0, 0 0;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.page {
  padding: 4rem clamp(1.5rem, 4vw, 6rem) 5rem;
}

.logo {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, var(--accent), var(--supporting-light));
  color: #110617;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(214, 161, 56, 0.35);
}

.cta.secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero {
  background: radial-gradient(circle at top right, rgba(85, 48, 165, 0.5), rgba(3, 7, 18, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 32px;
  padding: clamp(2rem, 6vw, 4rem);
  box-shadow: 0 50px 100px rgba(3, 6, 20, 0.65);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(214, 161, 56, 0.18), transparent 45%);
  pointer-events: none;
}

/* === Imported animated background from Rowell hero === */

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.geometric-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 59, 0.5), transparent);
  animation: gridPulse 4s infinite ease-in-out;
}

.grid-line-1 {
  width: 100%;
  height: 1px;
  top: 20%;
  left: 0;
  animation-delay: 0s;
}

.grid-line-2 {
  width: 100%;
  height: 1px;
  top: 40%;
  left: 0;
  animation-delay: -1s;
}

.grid-line-3 {
  width: 100%;
  height: 1px;
  top: 60%;
  left: 0;
  animation-delay: -2s;
}

.grid-line-4 {
  width: 1px;
  height: 100%;
  top: 0;
  left: 25%;
  animation-delay: -0.5s;
}

.grid-line-5 {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  animation-delay: -1.5s;
}

.grid-line-6 {
  width: 1px;
  height: 100%;
  top: 0;
  left: 75%;
  animation-delay: -2.5s;
}

.floating-cubes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cube {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 235, 59, 0.4), rgba(255, 193, 7, 0.2));
  border: 1px solid rgba(255, 235, 59, 0.5);
  animation: cubeFloat 8s infinite ease-in-out;
  transform-style: preserve-3d;
}

.cube-1 {
  width: 40px;
  height: 40px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.cube-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: -2s;
  animation-duration: 8s;
}

.cube-3 {
  width: 30px;
  height: 30px;
  top: 80%;
  left: 25%;
  animation-delay: -4s;
  animation-duration: 7s;
}

.cube-4 {
  width: 50px;
  height: 50px;
  top: 10%;
  left: 70%;
  animation-delay: -1s;
  animation-duration: 9s;
}

.cube-5 {
  width: 35px;
  height: 35px;
  top: 40%;
  left: 5%;
  animation-delay: -3s;
  animation-duration: 5s;
}

.energy-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wave {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 235, 59, 0.6);
  animation: waveExpand 6s infinite ease-out;
}

.wave-1 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 20%;
  animation-delay: 0s;
  animation-duration: 4s;
}

.wave-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 60%;
  animation-delay: -2s;
  animation-duration: 5s;
}

.wave-3 {
  width: 80px;
  height: 80px;
  top: 70%;
  left: 40%;
  animation-delay: -4s;
  animation-duration: 3s;
}

.particle-field {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffc107;
  border-radius: 50%;
  animation: particleFloat 10s infinite linear;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.9);
}

.particle-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle-2 {
  top: 20%;
  left: 30%;
  animation-delay: -1s;
  animation-duration: 12s;
}

.particle-3 {
  top: 40%;
  left: 60%;
  animation-delay: -2s;
  animation-duration: 10s;
}

.particle-4 {
  top: 60%;
  left: 20%;
  animation-delay: -3s;
  animation-duration: 9s;
}

.particle-5 {
  top: 80%;
  left: 80%;
  animation-delay: -4s;
  animation-duration: 11s;
}

.particle-6 {
  top: 30%;
  left: 90%;
  animation-delay: -5s;
  animation-duration: 7s;
}

.particle-7 {
  top: 70%;
  left: 50%;
  animation-delay: -6s;
  animation-duration: 13s;
}

.particle-8 {
  top: 50%;
  left: 5%;
  animation-delay: -7s;
  animation-duration: 6s;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.1;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scaleX(1.2);
  }
}

@keyframes cubeFloat {
  0% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) rotateX(90deg) rotateY(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-60px) rotateX(180deg) rotateY(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) rotateX(270deg) rotateY(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0px) rotateX(360deg) rotateY(360deg);
    opacity: 0.3;
  }
}

@keyframes waveExpand {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.hero-figure {
  position: relative;
  text-align: center;
}

.hero-figure img {
  width: min(420px, 85vw);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 35px 75px rgba(10, 0, 32, 0.55));
}

.hero-badge {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(23, 6, 47, 0.9);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-caption {
  margin-top: 0.5rem;
  color: rgba(229, 231, 235, 0.95);
  font-size: 0.9rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric {
  flex: 1;
  min-width: 120px;
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  color: #e5e7eb;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(229, 231, 235, 0.9);
  margin: 1rem 0 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.two-column {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

section {
  margin-top: 3.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(18px);
}

.section-title {
  margin-bottom: 1rem;
}

.section-text {
  color: var(--muted);
  font-size: 1.05rem;
}

.highlight-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.highlight-list li::before {
  content: "•";
  color: var(--accent);
}

.funnel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-item {
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.cta-block {
  margin-top: 2rem;
  padding: 1.75rem;
  border-radius: 24px;
  background: rgba(6, 12, 33, 0.8);
  border: 1px solid rgba(214, 161, 56, 0.2);
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.story-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline-step {
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 1rem;
}

.timeline-step span {
  font-size: 2rem;
  font-weight: 600;
  color: var(--supporting-light);
  line-height: 1;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  margin: 2.5rem 0;
}
.text-accent {
  color: var(--accent);
}

.list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.list li {
  display: flex;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.list li:last-child {
  border-bottom: none;
}

.badge {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.comparison {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.price-box {
  margin: 2rem 0 1rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(5, 11, 29, 0.6);
  border: 1px solid rgba(247, 195, 92, 0.3);
  text-align: center;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
}

.faq-item:first-child {
  border-top: none;
}

.faq-item h4 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--muted);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.details-item {
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.muted-link {
  text-decoration: underline;
  opacity: 0.7;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.image-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card figcaption {
  padding: 0.75rem 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.photo-strip {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.photo-strip img {
  width: min(180px, 45%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel {
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(85, 48, 165, 0.15);
  color: var(--supporting-light);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 0.6rem;
}

.checklist li::before {
  content: "✓";
  color: var(--accent);
}

.calendar-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 2rem;
  }

  .cta {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    position: static;
    transform: none;
    margin: 0 auto 1rem;
    display: inline-block;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .timeline-step {
    flex-direction: column;
  }
}

