:root {
  --ink: #171720;
  --text: #29293a;
  --muted: #6c6f83;
  --soft: #f8f5ff;
  --white: #fff;
  --purple: #7350e6;
  --purple-deep: #5832d8;
  --pink: #d97cf0;
  --yellow: #ffcf5a;
  --orange: #ff8a2a;
  --lime: #c7f84d;
  --green: #28c76f;
  --line: rgba(115, 80, 230, 0.14);
  --line-strong: rgba(115, 80, 230, 0.24);
  --shadow-sm: 0 14px 36px rgba(52, 36, 112, 0.08);
  --shadow-md: 0 24px 64px rgba(52, 36, 112, 0.14);
  --shadow-lg: 0 34px 100px rgba(52, 36, 112, 0.2);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
body.mirl-v7-homepage {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 207, 90, 0.32), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(217, 124, 240, 0.28), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, #f7f3ff 42%, #fff 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before,
body.mirl-v7-homepage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(115, 80, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 80, 230, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

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

.wrap {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--purple-deep);
  color: #fff;
  border-radius: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0 10px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 45px rgba(52, 36, 112, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: conic-gradient(from 140deg, var(--yellow), var(--pink), var(--purple), var(--yellow));
  box-shadow: 0 12px 28px rgba(115, 80, 230, 0.22);
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #5c5f73;
  font-size: 14px;
  font-weight: 800;
}

.nav a:not(.nav-cta):hover {
  color: var(--purple-deep);
}

.nav .menu,
.nav > ul {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-cta {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: 0 14px 26px rgba(88, 50, 216, 0.24);
}

.v7-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(115, 80, 230, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--purple-deep);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

body.v7-nav-open {
  overflow: hidden;
}

.seeker-guide-hero {
  padding: 74px 0 56px;
}

.seeker-guide-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.seeker-guide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seeker-guide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(40, 199, 111, 0.14);
}

.seeker-guide-hero h1 {
  margin: 22px 0 20px;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.99;
  letter-spacing: -0.045em;
  font-weight: 900;
  text-wrap: balance;
}

.seeker-guide-gradient {
  background: linear-gradient(100deg, #171720 8%, var(--purple-deep) 44%, #f76a0c 84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.seeker-guide-lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
}

.seeker-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.seeker-guide-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 17px;
  font-weight: 900;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seeker-guide-btn:hover {
  transform: translateY(-2px);
}

.seeker-guide-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: 0 18px 34px rgba(88, 50, 216, 0.28);
}

.seeker-guide-btn--secondary {
  color: var(--purple-deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.seeker-guide-visual-card {
  position: relative;
  border-radius: 36px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.seeker-guide-visual-card::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  right: -100px;
  top: -110px;
  background: radial-gradient(circle, rgba(217, 124, 240, 0.34), transparent 68%);
}

.seeker-guide-phone {
  position: relative;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.seeker-guide-phone-top {
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 207, 90, 0.85), transparent 34%),
    linear-gradient(135deg, #2a155e, var(--purple), var(--orange));
}

.seeker-guide-phone-top small {
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.seeker-guide-phone-top strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  letter-spacing: -0.05em;
}

.seeker-guide-phone-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.seeker-guide-mini-card {
  padding: 14px;
  border-radius: 20px;
  background: #fbf8ff;
  border: 1px solid var(--line);
}

.seeker-guide-mini-card strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 5px;
}

.seeker-guide-mini-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.seeker-guide-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.seeker-guide-mini-btn {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--purple-deep);
  font-size: 12px;
  font-weight: 900;
}

.seeker-guide-mini-btn--alt {
  background: #fff;
  color: var(--purple-deep);
  border: 1px solid var(--line);
}

.seeker-guide-section {
  padding: 70px 0;
}

.seeker-guide-section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.seeker-guide-section-label {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  color: var(--purple-deep);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.seeker-guide-section h2,
.seeker-guide-finale h2 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.042em;
  font-weight: 900;
  text-wrap: balance;
}

.seeker-guide-section-head p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.seeker-guide-info-box {
  border-radius: 32px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.seeker-guide-app-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.seeker-guide-app-box h3,
.seeker-guide-card h3,
.seeker-guide-faq h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.seeker-guide-app-box p,
.seeker-guide-card p,
.seeker-guide-faq p,
.seeker-guide-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.seeker-guide-store-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 330px;
}

.seeker-guide-store {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #181820;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(23, 23, 32, 0.16);
}

.seeker-guide-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.seeker-guide-card {
  position: relative;
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.seeker-guide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255, 207, 90, 0.2), transparent 38%);
  opacity: 0;
  transition: 0.22s;
}

.seeker-guide-card:hover::before {
  opacity: 1;
}

.seeker-guide-card > * {
  position: relative;
}

.seeker-guide-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(115, 80, 230, 0.12), rgba(255, 207, 90, 0.24));
  font-size: 24px;
}

.seeker-guide-steps {
  display: grid;
  gap: 16px;
}

.seeker-guide-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  border-radius: 30px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.seeker-guide-num {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff3bf, var(--yellow));
  color: #6e4700;
  font-weight: 900;
}

.seeker-guide-step h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.seeker-guide-step ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.seeker-guide-step li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.seeker-guide-step li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple-deep);
  font-weight: 900;
}

.seeker-guide-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.seeker-guide-highlight {
  border-radius: 34px;
  padding: 32px;
  background: #171225;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.seeker-guide-highlight::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  right: -120px;
  top: -150px;
  background: radial-gradient(circle, rgba(115, 80, 230, 0.9), transparent 68%);
}

.seeker-guide-highlight > * {
  position: relative;
}

.seeker-guide-highlight h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.seeker-guide-highlight p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.seeker-guide-highlight p:last-child,
.seeker-guide-soft-card p:last-child {
  margin-bottom: 0;
}

.seeker-guide-soft-card {
  border-radius: 34px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 245, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.seeker-guide-soft-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.seeker-guide-soft-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.72;
}

.seeker-guide-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.seeker-guide-faq {
  border-radius: 26px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.seeker-guide-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 900;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.seeker-guide-faq summary::-webkit-details-marker {
  display: none;
}

.seeker-guide-faq summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 7px;
  transition: transform 0.2s ease;
}

.seeker-guide-faq[open] summary::before {
  transform: rotate(90deg);
}

.seeker-guide-faq p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.seeker-guide-faq a {
  color: var(--purple-deep);
  font-weight: 900;
}

.seeker-guide-help-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.seeker-guide-help-link {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 900;
  color: var(--purple-deep);
}

.seeker-guide-finale {
  padding: 42px;
  border-radius: 40px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 207, 90, 0.62), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(217, 124, 240, 0.58), transparent 34%),
    linear-gradient(135deg, #1f073f 0%, #643ee0 48%, #f76a0c 100%);
  box-shadow: var(--shadow-lg);
}

.seeker-guide-finale h2 {
  color: #fff;
  margin-top: 0;
}

.seeker-guide-finale p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
}

.reveal {
  opacity: 0.001 !important;
  transform: none !important;
  transition: opacity 0.45s ease !important;
}

.reveal.in-view {
  opacity: 1 !important;
  transform: none !important;
}

.footer {
  padding: 26px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer .brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo .custom-logo-link,
.brand-logo--footer .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo--footer .custom-logo {
  max-width: 96px !important;
  max-height: 24px !important;
}

@media (max-width: 1020px) {
  .v7-nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 30;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a:not(.nav-cta) {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
  }

  .nav a:not(.nav-cta):hover {
    background: rgba(115, 80, 230, 0.08);
  }

  .nav .nav-cta {
    width: 100%;
    margin-top: 4px;
  }
}

@media (max-width: 900px) {
  .seeker-guide-hero-grid,
  .seeker-guide-app-box,
  .seeker-guide-split {
    grid-template-columns: 1fr;
  }

  .seeker-guide-store-row {
    min-width: 0;
  }

  .seeker-guide-path-grid,
  .seeker-guide-faq-grid,
  .seeker-guide-help-links {
    grid-template-columns: 1fr;
  }

  .seeker-guide-hero {
    padding-top: 50px;
  }

  .seeker-guide-section {
    padding: 54px 0;
  }

  .seeker-guide-step {
    grid-template-columns: 1fr;
  }

  .seeker-guide-num {
    width: 48px;
    height: 48px;
  }

  .wrap {
    width: min(calc(100% - 30px), var(--max));
  }
}

@media (max-width: 520px) {
  .seeker-guide-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .seeker-guide-actions .seeker-guide-btn,
  .seeker-guide-finale .seeker-guide-btn {
    width: 100%;
  }

  .seeker-guide-store-row,
  .seeker-guide-mini-row {
    grid-template-columns: 1fr;
  }

  .seeker-guide-info-box,
  .seeker-guide-soft-card,
  .seeker-guide-highlight {
    padding: 24px;
    border-radius: 28px;
  }

  .seeker-guide-card,
  .seeker-guide-step,
  .seeker-guide-faq {
    padding: 22px;
  }

  .topbar {
    padding-top: 10px;
  }

  .topbar-inner,
  .nav {
    border-radius: 24px;
  }

  .topbar-inner {
    gap: 10px;
  }

  .brand {
    font-size: 18px;
  }

  .seeker-guide-visual-card {
    padding: 18px;
    border-radius: 28px;
  }

  .seeker-guide-finale {
    padding: 32px 24px;
    border-radius: 32px;
  }

  .footer-inner {
    display: grid;
  }
}
