/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Sequel Sans';
  src: url('../fonts/SequelSans-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Sequel Sans';
  src: url('../fonts/SequelSans-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Sequel Sans';
  src: url('../fonts/SequelSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Sequel Sans';
  src: url('../fonts/SequelSans-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* ---------- Tokens ---------- */
:root {
  --navy: #2b2e7b;
  --indigo: #2a3594;
  --blue: #4291f0;
  --violet: #5c11d8;
  --purple: #9620d7;
  --purple-deep: #2819d2;
  --pink: #d62e7d;
  --gold: #e0c843;
  --amber: #de9b40;
  --orange: #e4622c;
  --red-orange: #da4f2f;
  --cream: #f4f0e6;
  --rose: #db9391;

  --ink: #1c1a33;
  --muted: #6b6a80;

  font-size: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Sequel Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

a { color: inherit; }

/* ---------- Top bar ---------- */
.top-bar {
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--amber) 45%, var(--orange) 75%, var(--red-orange));
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(115deg, #8b12d6 0%, var(--violet) 32%, var(--purple-deep) 62%, #1a2aa0 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 68%;
  object-fit: cover;
  object-position: 60% 30%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 18%, rgba(0,0,0,1) 38%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 18%, rgba(0,0,0,1) 38%);
  opacity: 0.92;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 56px 72px;
  display: flex;
  flex-direction: column;
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  padding: 9px 18px;
  border-radius: 999px;
}

.eyebrow {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  letter-spacing: .12em;
  font-weight: 600;
}

.hero__content {
  margin-top: 64px;
  max-width: 620px;
}

.hero__title {
  margin: 0 0 28px;
  color: #fff;
  line-height: 1.04;
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
}

.hero__title-light {
  display: block;
  font-weight: 400;
}

.hero__title-bold {
  display: block;
  font-weight: 900;
}

.hero__text p {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 540px;
}

.hero__text-strong {
  font-weight: 700;
  color: #fff !important;
}

/* ---------- Capture section ---------- */
.capture {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  background: linear-gradient(120deg, var(--purple-deep) 0%, var(--violet) 55%, var(--pink) 130%);
  min-height: 520px;
}

.capture__photo {
  position: relative;
  overflow: hidden;
}

.capture__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  min-height: 420px;
}

.capture__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
  filter: blur(2px);
  opacity: .9;
  z-index: 0;
}

.blob--gold {
  width: 46%;
  height: 78%;
  left: 4%;
  top: 8%;
  background: linear-gradient(160deg, var(--gold), var(--amber));
}

.blob--orange {
  width: 52%;
  height: 60%;
  right: -6%;
  bottom: 4%;
  background: linear-gradient(200deg, var(--orange), var(--red-orange));
  border-radius: 55% 45% 40% 60% / 55% 60% 40% 45%;
}

/* ---------- Card ---------- */
.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 20px;
  padding: 36px 38px 40px;
  box-shadow: 0 30px 60px -20px rgba(20, 10, 60, .45);
}

.step-indicator {
  display: block;
  color: var(--pink);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.card__title {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 22px;
  line-height: 1.25;
}

.field {
  position: relative;
}

.field__input {
  width: 100%;
  height: 54px;
  border: 1.5px solid var(--rose);
  border-radius: 10px;
  padding: 0 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .15s ease;
}

.field--select .field__input { padding-right: 42px; }

.field__input::placeholder { color: #b8b6c4; }

.field__input:focus { border-color: var(--purple); }

.field__chevron {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.field__suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid #ece9f3;
  border-radius: 10px;
  box-shadow: 0 16px 32px -12px rgba(20,10,60,.25);
  z-index: 5;
  max-height: 220px;
  overflow-y: auto;
}

.field__suggestions li {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
}

.field__suggestions li:hover,
.field__suggestions li.active {
  background: #f6f1fd;
}

.field__suggestions li small {
  color: var(--muted);
  font-weight: 600;
}

.field__hint {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
  margin: 16px 0 0;
}

.region-match {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.region-match strong { color: var(--pink); }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 22px;
  cursor: pointer;
}

.consent input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--pink);
  flex-shrink: 0;
}

.consent span {
  font-size: .82rem;
  line-height: 1.5;
  color: var(--muted);
}

.btn-cta {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 10px;
  background: var(--pink);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, opacity .15s ease;
}

.btn-cta:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.btn-cta:not(:disabled):hover {
  background: #c0246e;
  transform: translateY(-1px);
}

.link-back {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: underline;
}

.card__step--success {
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e1f5ee;
  color: #0f6e56;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--purple-deep), var(--indigo));
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 34px 20px 40px;
}

.site-footer__name {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 8px;
}

.site-footer__meta {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin: 0 0 6px;
}

.site-footer__links {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}

.site-footer__links a { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .capture {
    grid-template-columns: 1fr;
  }
  .capture__photo img { min-height: 320px; }
  .capture__stage { padding: 44px 24px; }
}

@media (max-width: 640px) {
  .hero__inner { padding: 32px 24px 48px; }
  .hero__content { margin-top: 40px; }
  .hero__photo { width: 100%; opacity: .35; }
  .hero__top { flex-direction: column; align-items: flex-start; }
  .card { padding: 28px 24px 32px; }
}
