:root {
  --pink: #f01875;
  --blue: #1688ea;
  --cyan: #14cfc4;
  --gold: #f2ae18;
  --purple: #8738df;
  --ink: #1f2540;
  --muted: #62677b;
  --paper: #fffafc;
  --white: #ffffff;
  --line: rgba(31, 37, 64, 0.12);
  --shadow: 0 24px 70px rgba(31, 37, 64, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(20, 207, 196, 0.16), transparent 22rem),
    radial-gradient(circle at 92% 14%, rgba(240, 24, 117, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 45%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  color: var(--muted);
}

.header-cta,
.primary-button,
.secondary-button,
.ghost-button,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.primary-button,
.price-card a {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 14px 32px rgba(240, 24, 117, 0.24);
}

.secondary-button,
.ghost-button {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.price-card a:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(84vh - 82px);
  padding: clamp(1.75rem, 4vw, 4rem) clamp(1rem, 5vw, 5rem) 2rem;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 6.1vw, 5.15rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.form-intro p,
.video-card p,
.price-card p,
footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-points span {
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(20, 207, 196, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.hero-visual img {
  width: 100%;
  height: min(44vw, 460px);
  object-fit: cover;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.event-strip article {
  display: grid;
  min-height: 98px;
  place-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.event-strip span {
  font-weight: 800;
}

.event-strip article:nth-child(1) span { color: var(--cyan); }
.event-strip article:nth-child(2) span { color: var(--blue); }
.event-strip article:nth-child(3) span { color: var(--pink); }
.event-strip article:nth-child(4) span { color: var(--gold); }
.event-strip article:nth-child(5) span { color: var(--purple); }

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.main-video-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 340px);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 960px;
  margin: 0 auto 1.2rem;
  padding: clamp(1rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(31, 37, 64, 0.1);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(20, 207, 196, 0.1));
  box-shadow: 0 18px 54px rgba(31, 37, 64, 0.1);
}

.main-video-copy h3 {
  margin-bottom: 0.8rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.main-video-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.main-sample-video {
  width: 100%;
  max-height: 420px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: #111827;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(31, 37, 64, 0.18);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.video-card,
.price-card,
.order-form {
  border: 1px solid rgba(31, 37, 64, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 46px rgba(31, 37, 64, 0.08);
}

.video-card {
  padding: 0.55rem;
  border-radius: 14px;
}

.video-card h3,
.video-card p {
  padding-inline: 0.25rem;
}

.video-card h3 {
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.video-card p {
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.sample-video,
.video-placeholder {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 260px;
  margin-bottom: 0.65rem;
  border-radius: 10px;
}

.sample-video {
  display: block;
  object-fit: cover;
  background: #111827;
}

.video-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(240, 24, 117, 0.82), rgba(22, 136, 234, 0.78)),
    url("assets/clickdate-banner.png") center / cover;
}

.featured .video-placeholder {
  background:
    linear-gradient(135deg, rgba(20, 207, 196, 0.72), rgba(135, 56, 223, 0.72)),
    url("assets/clickdate-banner.png") center / cover;
}

.play-dot {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  font-size: 1.5rem;
}

.video-placeholder p {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
}

.soft-band {
  background: linear-gradient(90deg, rgba(20, 207, 196, 0.1), rgba(242, 174, 24, 0.13), rgba(240, 24, 117, 0.1));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
}

.steps {
  display: grid;
  gap: 0.9rem;
}

.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.steps strong {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
}

.steps article:nth-child(2) strong { background: var(--pink); }
.steps article:nth-child(3) strong { background: var(--gold); }

.price-card {
  position: relative;
  padding: 1.3rem;
}

.price-card.popular {
  transform: translateY(-12px);
  border-color: rgba(240, 24, 117, 0.32);
  box-shadow: 0 24px 70px rgba(240, 24, 117, 0.18);
}

.custom-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(20, 207, 196, 0.08));
}

.custom-card h3 {
  font-size: 2.2rem;
}

.package-name,
.badge {
  margin-bottom: 0.5rem;
  color: var(--purple);
  font-weight: 800;
  text-transform: uppercase;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--pink);
  font-size: 0.72rem;
}

.price-card h3 {
  margin: 0;
  font-size: 3rem;
}

.price-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.price-card a {
  width: 100%;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.form-intro {
  position: sticky;
  top: 112px;
}

.order-form {
  padding: clamp(1rem, 3vw, 2rem);
}

.progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.progress-dot {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 37, 64, 0.12);
}

.progress-dot.active {
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--blue));
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 600;
  outline: none;
}

textarea,
label:has(textarea) {
  grid-column: 1 / -1;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(22, 136, 234, 0.7);
  box-shadow: 0 0 0 4px rgba(22, 136, 234, 0.12);
}

.hidden {
  display: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

footer {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 3rem 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

footer img {
  width: 140px;
  border-radius: 16px;
}

@media (max-width: 940px) {
  .hero,
  .split,
  .main-video-card,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    height: auto;
  }

  .event-strip,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-card.popular {
    transform: none;
  }

  .form-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
  }

  .brand img {
    width: 86px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0.65rem 0.9rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  .form-step.active {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    max-height: 360px;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .main-sample-video {
    max-height: 360px;
  }

  .sample-video,
  .video-placeholder {
    max-height: 240px;
  }
}
